ReorderBotActiveUsernames constructor

const ReorderBotActiveUsernames({
  1. required int botUserId,
  2. required List<String> usernames,
})

Changes order of active usernames of a bot. Can be called only if userTypeBot.can_be_edited == true

Implementation

const ReorderBotActiveUsernames({
  required this.botUserId,
  required this.usernames,
});