Reaction constructor

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

Constructs a new Reaction instance.

Implementation

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