PinChangeRecoverableCustomValidationError.fromJson constructor Null safety

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

Alternate constructor that creates a PinChangeRecoverableCustomValidationError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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