emojiAvatar method

Future<DynamiteResponse<AvatarEmojiAvatarResponseApplicationJson, void>> emojiAvatar({
  1. required String emoji,
  2. required String token,
  3. String? color,
  4. AvatarEmojiAvatarApiVersion? apiVersion,
  5. bool? oCSAPIRequest,
})

Set an emoji as avatar.

Returns a Future containing a DynamiteResponse with the status code, deserialized body and headers. Throws a DynamiteApiException if the API call does not return an expected status code.

Parameters:

  • emoji Emoji.
  • color Color of the emoji.
  • apiVersion Defaults to v1.
  • token
  • oCSAPIRequest Required to be true for the API request to pass. Defaults to true.

Status codes:

  • 200: Avatar set successfully
  • 400: Setting emoji avatar is not possible

See:

Implementation

Future<DynamiteResponse<AvatarEmojiAvatarResponseApplicationJson, void>> emojiAvatar({
  required String emoji,
  required String token,
  String? color,
  AvatarEmojiAvatarApiVersion? apiVersion,
  bool? oCSAPIRequest,
}) async {
  final rawResponse = emojiAvatarRaw(
    emoji: emoji,
    token: token,
    color: color,
    apiVersion: apiVersion,
    oCSAPIRequest: oCSAPIRequest,
  );

  return rawResponse.future;
}