DeviceInformationChangeError.deviceProtectionError constructor Null safety

DeviceInformationChangeError.deviceProtectionError(
  1. Map<String, dynamic> json
)

An error that indicates that some form of tampering was found in the application.

Params:

  • json: contains the source for instance creation.

Implementation

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