UrpDeviceInfo constructor
UrpDeviceInfo({
- String? id,
- String? name,
- String? fwVersion,
- String? fwMd5,
- UrpDeviceType? deviceType,
- String? mac,
- String? revision,
- UrpWifiState? wifi,
- UrpBleState? ble,
- UrpUsbState? usb,
- String? hostname,
- bool? flashEncrypted,
- bool? secureBootEnabled,
Implementation
factory UrpDeviceInfo({
$core.String? id,
$core.String? name,
$core.String? fwVersion,
$core.String? fwMd5,
UrpDeviceType? deviceType,
$core.String? mac,
$core.String? revision,
UrpWifiState? wifi,
UrpBleState? ble,
UrpUsbState? usb,
$core.String? hostname,
$core.bool? flashEncrypted,
$core.bool? secureBootEnabled,
}) {
final $result = create();
if (id != null) {
$result.id = id;
}
if (name != null) {
$result.name = name;
}
if (fwVersion != null) {
$result.fwVersion = fwVersion;
}
if (fwMd5 != null) {
$result.fwMd5 = fwMd5;
}
if (deviceType != null) {
$result.deviceType = deviceType;
}
if (mac != null) {
$result.mac = mac;
}
if (revision != null) {
$result.revision = revision;
}
if (wifi != null) {
$result.wifi = wifi;
}
if (ble != null) {
$result.ble = ble;
}
if (usb != null) {
$result.usb = usb;
}
if (hostname != null) {
$result.hostname = hostname;
}
if (flashEncrypted != null) {
$result.flashEncrypted = flashEncrypted;
}
if (secureBootEnabled != null) {
$result.secureBootEnabled = secureBootEnabled;
}
return $result;
}