openChat method
- RxUser? user,
- RxChatContact? contact,
- 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));
}
}
}
}