copyWith method

ArtemisAcpsAeaCommand copyWith({
  1. String? deviceId,
  2. String? airlineCode,
  3. BoardingPassCommand? boardingPass,
  4. BagTagCommand? bagTag,
  5. 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,
    );