FingerprintUserVerificationContext.fromJson constructor Null safety

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

Alternate constructor that creates a FingerprintUserVerificationContext from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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