AuthenticationServerCanceledOperation.fromJson constructor

AuthenticationServerCanceledOperation.fromJson(
  1. Map<String, dynamic> json
)

Alternate constructor that creates an AuthenticationServerCanceledOperation from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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