UrpSecDeviceCommand constructor
UrpSecDeviceCommand({
- UrpSecCommand? command,
- UrpSecPrimeParameters? primeParameters,
Implementation
factory UrpSecDeviceCommand({
UrpSecCommand? command,
UrpSecPrimeParameters? primeParameters,
}) {
final $result = create();
if (command != null) {
$result.command = command;
}
if (primeParameters != null) {
$result.primeParameters = primeParameters;
}
return $result;
}