DeleteAuthenticatorUnknownError.fromJson constructor Null safety

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

Alternate constructor that creates an DeleteAuthenticatorUnknownError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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