clearChat method

Future<void> clearChat()

Clears a Chat-dialog history with the user.

Implementation

Future<void> clearChat() async {
  final ChatId? dialog = user?.user.value.dialog;

  if (dialog != null) {
    try {
      await _chatService.clearChat(dialog);
    } on ClearChatException catch (e) {
      MessagePopup.error(e);
    } catch (e) {
      MessagePopup.error(e);
      rethrow;
    }
  }
}