copyWith method

AeaCommand copyWith({
  1. String? command,
})

Implementation

AeaCommand copyWith({
  String? command,
}) =>
    AeaCommand(
      command: command ?? this.command,
    );