AntennaFirmwareCommand constructor
- Version? version,
- MotorCommand? swivel,
- bool? stop,
- bool? calibrate,
Implementation
factory AntennaFirmwareCommand({
$2.Version? version,
$1.MotorCommand? swivel,
$core.bool? stop,
$core.bool? calibrate,
}) {
final $result = create();
if (version != null) {
$result.version = version;
}
if (swivel != null) {
$result.swivel = swivel;
}
if (stop != null) {
$result.stop = stop;
}
if (calibrate != null) {
$result.calibrate = calibrate;
}
return $result;
}