copyWith method
Implementation
SetCommands copyWith({
BotCommandScope? scope,
String? languageCode,
List<BotCommand>? commands,
}) => SetCommands(
scope: scope ?? this.scope,
languageCode: languageCode ?? this.languageCode,
commands: commands ?? this.commands,
);