PinUserVerificationInvalidPinError.fromJson constructor Null safety

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

Alternate constructor that create an PinUserVerificationInvalidPinError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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