copyWith method

GateReaderCommand copyWith({
  1. String? gateReaderId,
  2. List<GateReaderAeaCommand>? data,
})

Implementation

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