clearGroupHistoryMessage method Null safety
- {required String groupID}
Clear the group chat local and cloud messages (do not delete the conversation)
caution:
When the messages in the session are deleted locally, they are also deleted synchronously on the server.
Web does not support this interface
Implementation
Future<V2TimCallback> clearGroupHistoryMessage({
required String groupID,
}) async {
return await ImFlutterPlatform.instance
.clearGroupHistoryMessage(groupID: groupID);
}