CustomerUnclaimDeviceRequest.fromJson constructor

CustomerUnclaimDeviceRequest.fromJson(
  1. Map json_
)

Implementation

CustomerUnclaimDeviceRequest.fromJson(core.Map json_)
  : this(
      device:
          json_.containsKey('device')
              ? DeviceReference.fromJson(
                json_['device'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );