UrpSecDeviceCommand constructor

UrpSecDeviceCommand({
  1. UrpSecCommand? command,
  2. 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;
}