deleteConversation method

Future<Result<bool>> deleteConversation({
  1. required int conversationId,
})

Delete a conversation

Implementation

Future<Result<bool>> deleteConversation({required int conversationId}) async {
  return await _sdk.deleteConversation(conversationId);
}