deleteChatStickerSet method

Future<bool> deleteChatStickerSet(
  1. ChatID chatId
)
inherited

Implementation

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