FingerprintUserVerificationError.fromJson constructor

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

Alternate constructor used to create FingerprintUserVerificationError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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