copyWith method
Implementation
GateReaderCommand copyWith({
String? gateReaderId,
List<GateReaderAeaCommand>? data,
}) =>
GateReaderCommand(
gateReaderId: gateReaderId ?? this.gateReaderId,
data: data ?? this.data,
);
GateReaderCommand copyWith({
String? gateReaderId,
List<GateReaderAeaCommand>? data,
}) =>
GateReaderCommand(
gateReaderId: gateReaderId ?? this.gateReaderId,
data: data ?? this.data,
);