PinChangeRecoverableError.customValidationError constructor

PinChangeRecoverableError.customValidationError(
  1. Map<String, dynamic> json
)

Alternate constructor to create a PinChangeRecoverableCustomValidationError.

Params:

  • json: contains the source for instance creation.

Implementation

factory PinChangeRecoverableError.customValidationError(
  Map<String, dynamic> json,
) {
  return PinChangeRecoverableCustomValidationError.fromJson(json);
}