PinEnrollmentCustomValidationError.fromJson constructor

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

Alternate constructor that creates a PinEnrollmentCustomValidationError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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