DeleteAuthenticatorError.fromJson constructor Null safety

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

Alternate constructor to create an DeleteAuthenticatorError from json.

Params:

  • json: contains the source for instance creation.

Implementation

factory DeleteAuthenticatorError.fromJson(Map<String, dynamic> json) {
  return const DeleteAuthenticatorErrorConverter().fromJson(json);
}