copyWith method

GateReaderAeaCommand copyWith({
  1. String? command,
  2. String? message,
  3. dynamic isSuccess,
})

Implementation

GateReaderAeaCommand copyWith({
  String? command,
  String? message,
  dynamic isSuccess,
}) =>
    GateReaderAeaCommand(
      command: command ?? this.command,
      message: message ?? this.message,
      isSuccess: isSuccess ?? this.isSuccess,
    );