PinUserVerificationContext.fromJson constructor Null safety

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

Alternate constructor that creates a UserVerificationContext from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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