setChatStickerSet method

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

Implementation

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