MessageStatusDetail constructor

MessageStatusDetail({
  1. String? count,
  2. int? totalParticipantCount,
  3. required List<ParticipantList> participantList,
})

Creates a new MessageStatusDetail object.

Implementation

MessageStatusDetail({
  this.count,
  this.totalParticipantCount,
  required this.participantList,
});