MessageReaction constructor

MessageReaction(
  1. {String? id,
  2. int? messageId,
  3. String? reaction,
  4. String? uid,
  5. int? reactedAt,
  6. User? reactedBy}
)

Implementation

MessageReaction({
  this.id,
  this.messageId,
  this.reaction,
  this.uid,
  this.reactedAt,
  this.reactedBy
});