MessageDeliveredStatus constructor

MessageDeliveredStatus({
  1. String? deliveredCount,
  2. int? totalParticipatCount,
  3. required List<DeliveredParticipantList> participantList,
})

Implementation

MessageDeliveredStatus({
  this.deliveredCount,
  this.totalParticipatCount,
  required this.participantList,
});