OutOfBandOperationDeviceProtectionError.fromJson constructor Null safety

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

Alternate constructor that creates an OutOfBandOperationDeviceProtectionError from a json.

Params:

  • json: contains the source for instance creation.

Implementation

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