copyWith method

GetEmojiReaction copyWith({
  1. String? emoji,
})

Implementation

GetEmojiReaction copyWith({
  String? emoji,
}) =>
    GetEmojiReaction(
      emoji: emoji ?? this.emoji,
    );