PinChangeError.userCanceled constructor Null safety

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

An error that indicates that the PIN change was canceled.

Params:

  • json: contains the source for instance creation.

Implementation

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