ReactionOperation constructor

const ReactionOperation(
  1. String userId,
  2. String reaction,
  3. ReactionOperate operate
)

Reaction operation.

Param userId The user ID of the operator.

Param reaction Changed Reaction.

Param operate The Reaction operation type.

Implementation

const ReactionOperation(
  this.userId,
  this.reaction,
  this.operate,
);