PinChangePinLocked.fromJson constructor Null safety

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

Alternate constructor that creates a PinChangePinLocked from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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