setStickerPositionInSet method

Future<bool> setStickerPositionInSet(
  1. String sticker,
  2. int position
)
inherited

Use this method to move a sticker in a set created by the bot to a specific position.

Returns True on success.

Implementation

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