PinAuthenticatorProtectionStatus.fromJson constructor Null safety

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

Alternate constructor that creates a PinAuthenticatorProtectionStatus from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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