getMyStickers method
Get My Stickers.
ID: d0b5e1fc.
Implementation
Future<Result<MessagesMyStickersBase>> getMyStickers({
required int offsetId,
required int limit,
}) async {
// Preparing the request.
final request = MessagesGetMyStickers(offsetId: offsetId, limit: limit);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<MessagesMyStickersBase>();
}