copyWith method
Implementation
BotCommand copyWith({
String? command,
String? description,
bool? isEphemeral,
}) => BotCommand(
command: command ?? this.command,
description: description ?? this.description,
isEphemeral: isEphemeral ?? this.isEphemeral,
);