PinChangeError.userNotResponsive constructor

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

The error that occurs when the user took too long to provide the PIN during the change operation.

Params:

  • json: contains the source for instance creation.

Implementation

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