UrpTscDeviceCommand constructor
UrpTscDeviceCommand({
- UrpTscCommand? command,
- UrpTscPrimeParameters? primeParameters,
- UrpSecureToken? secureToken,
- UrpTokenRequest? tokenRequest,
Implementation
factory UrpTscDeviceCommand({
UrpTscCommand? command,
UrpTscPrimeParameters? primeParameters,
$0.UrpSecureToken? secureToken,
$0.UrpTokenRequest? tokenRequest,
}) {
final $result = create();
if (command != null) {
$result.command = command;
}
if (primeParameters != null) {
$result.primeParameters = primeParameters;
}
if (secureToken != null) {
$result.secureToken = secureToken;
}
if (tokenRequest != null) {
$result.tokenRequest = tokenRequest;
}
return $result;
}