setChatStickerSet method

Future<bool> setChatStickerSet(
  1. ChatID chatId,
  2. String stickerSetName
)
inherited

Use this method to set a new group sticker set for a supergroup.

The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights.

Use the field can_set_sticker_set optionally returned in getChat requests to check if the bot can use this method.

Returns True on success.

Implementation

Future<bool> setChatStickerSet(ChatID chatId, String stickerSetName) {
  return _client.apiCall(_token, 'setChatStickerSet', {
    'chat_id': chatId,
    'sticker_set_name': stickerSetName,
  });
}