UrpPsuDeviceCommand constructor
UrpPsuDeviceCommand({
- UrpPsuCommand? command,
- UrpPsuSearchParameters? searchParameters,
- UrpPsuPairParameters? pairParameters,
Implementation
factory UrpPsuDeviceCommand({
UrpPsuCommand? command,
UrpPsuSearchParameters? searchParameters,
UrpPsuPairParameters? pairParameters,
}) {
final $result = create();
if (command != null) {
$result.command = command;
}
if (searchParameters != null) {
$result.searchParameters = searchParameters;
}
if (pairParameters != null) {
$result.pairParameters = pairParameters;
}
return $result;
}