searchStickers method
Search Stickers.
ID: 29b1c66a.
Implementation
Future<Result<MessagesFoundStickersBase>> searchStickers({
required bool emojis,
required String q,
required String emoticon,
required List<String> langCode,
required int offset,
required int limit,
required int hash,
}) async {
// Preparing the request.
final request = MessagesSearchStickers(
emojis: emojis,
q: q,
emoticon: emoticon,
langCode: langCode,
offset: offset,
limit: limit,
hash: hash,
);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<MessagesFoundStickersBase>();
}