HardwareToDeviceInfo constructor
HardwareToDeviceInfo({})
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;
}