PinProtectionStatusUnlocked.fromJson constructor Null safety

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

Alternate constructor that creates a PinProtectionStatusUnlocked from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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