OperationDeviceProtectionError.fromJson constructor Null safety

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

Alternate constructor that creates a OperationDeviceProtectionError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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