onMessageDelivered property
void Function({DateTime? atDate, required Client client, required Conversation conversation, String? messageID, String? toClientID})?
onMessageDelivered
getter/setter pair
The sent message(ID is messageID) that send to conversation with receipt option, has been delivered to the client(ID is toClientID).
atDate means when it occurred.
Implementation
void Function({
required Client client,
required Conversation conversation,
String? messageID,
String? toClientID,
DateTime? atDate,
})? onMessageDelivered;