getDefaultBackgroundEmojis method

Future<Result<EmojiListBase>> getDefaultBackgroundEmojis({
  1. required int hash,
})

Get Default Background Emojis.

ID: a60ab9ce.

Implementation

Future<Result<EmojiListBase>> getDefaultBackgroundEmojis({
  required int hash,
}) async {
  // Preparing the request.
  final request = AccountGetDefaultBackgroundEmojis(
    hash: hash,
  );

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

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