merge method

Reaction merge(
  1. Reaction other
)

Returns a new Reaction that is a combination of this reaction and the given other reaction.

Implementation

Reaction merge(Reaction other) => copyWith(
      messageId: other.messageId,
      createdAt: other.createdAt,
      type: other.type,
      user: other.user,
      userId: other.userId,
      score: other.score,
      extraData: other.extraData,
    );