clearChat method

Future<void> clearChat()

Clears all the ChatItems of the chat.

Implementation

Future<void> clearChat() async {
  try {
    await _chatService.clearChat(id);
  } on ClearChatException catch (e) {
    MessagePopup.error(e);
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}