onInfoUpdated property
void Function({DateTime? atDate, String? byClientID, required Client client, required Conversation conversation, Map? updatedAttributes, Map? updatingAttributes})?
onInfoUpdated
getter/setter pair
The attributes of the conversation
has been updated.
updatingAttributes
means which attributes to be updated.
updatedAttributes
means result of updating.
byClientID
means who did it.
atDate
means when did it.
Implementation
void Function({
required Client client,
required Conversation conversation,
Map? updatingAttributes,
Map? updatedAttributes,
String? byClientID,
DateTime? atDate,
})? onInfoUpdated;