Reaction constructor

const Reaction({
  1. required String emoji,
  2. int count = 1,
  3. bool isUserReacted = false,
})

Creates a Reaction

Implementation

const Reaction({
  required this.emoji,
  this.count = 1,
  this.isUserReacted = false,
});