AuthenticationError.serverCanceledOperation constructor

AuthenticationError.serverCanceledOperation(
  1. Map<String, dynamic> json
)

The error that occurs when the server canceled the operation.

Params:

  • json: contains the source for instance creation.

Implementation

factory AuthenticationError.serverCanceledOperation(
  Map<String, dynamic> json,
) {
  return AuthenticationServerCanceledOperation.fromJson(json);
}