PinChangeError.pinLocked constructor Null safety

PinChangeError.pinLocked(
  1. Map<String, dynamic> json
)

An error that indicates that the PIN was locked because of too many failures.

Params:

  • json: contains the source for instance creation.

Implementation

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