getConversation method Null safety
- {required String conversationID}
Get a specified conversation
Parameter
conversationID The unique ID of the session, if it is a C2C single chat, the composition method is c2c_userID, if it is a group chat, the composition method is group_groupID
Implementation
Future<V2TimValueCallback<V2TimConversation>> getConversation({
/*required*/ required String conversationID,
}) async {
return ImFlutterPlatform.instance
.getConversation(conversationID: conversationID);
}