getRecentReactions method
Get Recent Reactions.
ID: 39461db2.
Implementation
Future<Result<MessagesReactionsBase>> getRecentReactions({
required int limit,
required int hash,
}) async {
// Preparing the request.
final request = MessagesGetRecentReactions(limit: limit, hash: hash);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<MessagesReactionsBase>();
}