getConversation static method
Future<Conversation?>
getConversation(
- String conversationWith,
- String conversationType, {
- required dynamic onSuccess(
- Conversation conversation
- required dynamic onError(
- CometChatException excep
In order to fetch a specific conversation
conversationWith
: UID/GUID of the user/group whose conversation you want to fetch.
conversationType
: user or group.
The method could throw PlatformException with error codes specifying the cause
Implementation
static Future<Conversation?> getConversation(String conversationWith, String conversationType, {required Function(Conversation conversation)? onSuccess, required Function(CometChatException excep)? onError}) async {
try {
final result = await channel.invokeMethod('getConversation', {
'conversationWith': conversationWith,
'conversationType': conversationType,
});
final res = Conversation.fromMap(result);
if(onSuccess != null) onSuccess(res);
return res;
} on PlatformException catch (platformException) {
if(onError != null) onError(CometChatException(platformException.code, platformException.details, platformException.message));
} catch (e) {
debugPrint("Error: $e");
if(onError != null) onError(CometChatException(ErrorCode.errorUnhandledException, e.toString() , e.toString()));
}
return null;
}