ToggleBotUsernameIsActive constructor

const ToggleBotUsernameIsActive({
  1. required int botUserId,
  2. required String username,
  3. required bool isActive,
})

Changes active state for a username of a bot. The editable username can't be disabled. May return an error with a message "USERNAMES_ACTIVE_TOO_MUCH" if the maximum number of active usernames has been reached. Can be called only if userTypeBot.can_be_edited == true

Implementation

const ToggleBotUsernameIsActive({
  required this.botUserId,
  required this.username,
  required this.isActive,
});