DeviceInformationChangeDeviceProtectionError.fromJson constructor Null safety

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

Alternate constructor that creates a DeviceInformationChangeDeviceProtectionError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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