deleteStickerSet method
Use this method to delete a sticker set that was created by the bot.
Returns True on success.
Implementation
Future<bool> deleteStickerSet(String name) async {
var requestUrl = _apiUri('deleteStickerSet');
var body = <String, dynamic>{'name': name};
return await HttpClient.httpPost(requestUrl, body: body);
}