GetDeviceRequest constructor

GetDeviceRequest({
  1. List<int>? deviceId,
  2. List<int>? hardwareId,
})

Implementation

factory GetDeviceRequest({
  $core.List<$core.int>? deviceId,
  $core.List<$core.int>? hardwareId,
}) {
  final _result = create();
  if (deviceId != null) {
    _result.deviceId = deviceId;
  }
  if (hardwareId != null) {
    _result.hardwareId = hardwareId;
  }
  return _result;
}