DevicePasscodeUserVerificationContext.fromJson constructor Null safety

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

Alternate constructor that creates a DevicePasscodeUserVerificationContext from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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