AuthCloudApiDeviceProtectionError.fromJson constructor Null safety

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

Alternate constructor that creates an AuthCloudApiDeviceProtectionError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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