clearRecentStickers method

Future<Result<Boolean>> clearRecentStickers({
  1. required bool attached,
})

Clear Recent Stickers.

ID: 8999602d.

Implementation

Future<Result<Boolean>> clearRecentStickers({required bool attached}) async {
  // Preparing the request.
  final request = MessagesClearRecentStickers(attached: attached);

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<Boolean>();
}