openChat method

Future<void> openChat({
  1. RxUser? user,
  2. RxChatContact? contact,
  3. RxChat? chat,
})

Opens a Chat-dialog with this user.

Creates a new one if it doesn't exist.

Implementation

Future<void> openChat({
  RxUser? user,
  RxChatContact? contact,
  RxChat? chat,
}) async {
  if (chat != null) {
    router.dialog(chat.chat.value, me);
  } else {
    user ??= contact?.user.value;

    if (user != null) {
      if (user.id == me) {
        router.chat(_chatService.monolog, push: true);
      } else {
        router.chat(ChatId.local(user.user.value.id));
      }
    }
  }
}