copyWith method

ReactionTypeCustomEmoji copyWith({
  1. int? customEmojiId,
})

Implementation

ReactionTypeCustomEmoji copyWith({int? customEmojiId}) =>
    ReactionTypeCustomEmoji(
      customEmojiId: customEmojiId ?? this.customEmojiId,
    );