copyWith method
ArtemisAcpsAeaCommand
copyWith({
- String? deviceId,
- String? airlineCode,
- BoardingPassCommand? boardingPass,
- BagTagCommand? bagTag,
- GateReaderCommand? gateReader,
Implementation
ArtemisAcpsAeaCommand copyWith({
String? deviceId,
String? airlineCode,
BoardingPassCommand? boardingPass,
BagTagCommand? bagTag,
GateReaderCommand? gateReader,
}) =>
ArtemisAcpsAeaCommand(
deviceId: deviceId ?? this.deviceId,
airlineCode: airlineCode ?? this.airlineCode,
boardingPass: boardingPass ?? this.boardingPass,
bagTag: bagTag ?? this.bagTag,
gateReader: gateReader ?? this.gateReader,
);