MissingAuthenticatorInServer.fromJson constructor

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

Alternate constructor that creates a MissingAuthenticatorInServer from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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