PinEnrollmentError.customValidationError constructor Null safety

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

Alternate constructor that creates a PinEnrollmentCustomValidationError.

Params:

  • json: contains the source for instance creation.

Implementation

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