AuthenticationUnknownError.fromJson constructor Null safety

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

Alternate constructor that creates a AuthenticationUnknownError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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