copyWith method

SetCommands copyWith({
  1. BotCommandScope? scope,
  2. String? languageCode,
  3. List<BotCommand>? commands,
})

Implementation

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