AuthenticationDeviceProtectionError.fromJson constructor

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

Alternate constructor that creates an AuthenticationDeviceProtectionError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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