MessageStatusDetail constructor

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

Initializes a new instance of the MessageStatusDetail class.

Implementation

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