reactionTypeCustomEmoji property

ReactionTypeCustomEmoji? reactionTypeCustomEmoji

A reaction with a custom emoji

Implementation

ReactionTypeCustomEmoji? get reactionTypeCustomEmoji {
  if (this is ReactionTypeCustomEmoji) {
    return this as ReactionTypeCustomEmoji;
  }
  return null;
}