deleteStickerFromSet method

Future<bool> deleteStickerFromSet(
  1. String sticker
)
inherited

Use this method to delete a sticker from a set created by the bot.

Returns True on success.

Implementation

Future<bool> deleteStickerFromSet(String sticker) {
  return _client.apiCall(_token, 'deleteStickerFromSet', {
    'sticker': sticker,
  });
}