PinProtectionStatusLastAttemptFailed.fromJson constructor Null safety

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

Alternate constructor that creates a PinProtectionStatusLastAttemptFailed from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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