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