getAllStickers method
Get All Stickers.
ID: b8a0a1a8.
Implementation
Future<Result<MessagesAllStickersBase>> getAllStickers({
required int hash,
}) async {
// Preparing the request.
final request = MessagesGetAllStickers(hash: hash);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<MessagesAllStickersBase>();
}