copyWith method
Implementation
BoardingPassCommand copyWith({
String? printerId,
List<AeaCommand>? data,
}) =>
BoardingPassCommand(
printerId: printerId ?? this.printerId,
data: data ?? this.data,
);
BoardingPassCommand copyWith({
String? printerId,
List<AeaCommand>? data,
}) =>
BoardingPassCommand(
printerId: printerId ?? this.printerId,
data: data ?? this.data,
);