deleteConversation method

FutureOr<DeleteConversationResponse> deleteConversation(
  1. String id
)

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;
  }
}