OperationError.userNotRegisteredInServer constructor
- Map<
String, dynamic> json
An error that occurs with username-less out-of-band authentication, if the username of a registered account is provided to the AccountSelectionHandler, but the user is not defined in the server where the token was redeemed.
Params:
- json: contains the source for instance creation.
Implementation
factory OperationError.userNotRegisteredInServer(Map<String, dynamic> json) {
return OperationUserNotRegisteredInServer.fromJson(json);
}