HardwareToDeviceInfo constructor

HardwareToDeviceInfo({
  1. List<int>? hardwareId,
  2. List<int>? deviceId,
  3. Timestamp? bound,
  4. Timestamp? unbound,
})

Implementation

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