MessageStatusDetail class

Represents the detailed status of a message, including delivery and read status.

This class holds information about the delivery and read status of a message, such as the count of participants who have received or read the message, the total number of participants, and detailed information about each participant.

Constructors

MessageStatusDetail({String? count, int? totalParticipantCount, required List<ParticipantList> participantList})
Creates a new MessageStatusDetail object.
MessageStatusDetail.fromJson(Map<String, dynamic> json)
Creates a new MessageStatusDetail object from a JSON map.
factory

Properties

count String?
The count of participants who have received or read the message.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
participantList List<ParticipantList>
A list of participants with detailed information about each participant.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
totalParticipantCount int?
The total number of participants in the conversation.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts the MessageStatusDetail object to a JSON map.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited