getFeaturedStickers method
Get Featured Stickers.
ID: 64780b14.
Implementation
Future<Result<MessagesFeaturedStickersBase>> getFeaturedStickers({
required int hash,
}) async {
// Preparing the request.
final request = MessagesGetFeaturedStickers(hash: hash);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<MessagesFeaturedStickersBase>();
}