deleteConversation method
Implementation
FutureOr<DeleteConversationResponse> deleteConversation(String id) async {
try {
final response = await _conversationClient.deleteConversation(id);
//log(response.toString());
return response;
} catch (e) {
//log(e.toString());
rethrow;
}
}