PinEnrollmentError.fromJson constructor

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

Alternate constructor that creates a PinEnrollmentError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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