Participant constructor

const Participant({
  1. required int id,
  2. required User? user,
  3. bool isMe = false,
})

Implementation

const Participant({
  required this.id,
  required this.user,
  this.isMe = false,
});