copyWith method

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

Copy model with modified properties.

Properties:

  • custom_emoji_id: Unique identifier of the custom emoji

Implementation

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