Opens a Chat-dialog with this user.
void openChat() { if (user?.id == me) { router.chat(_chatService.monolog, push: true); } else { router.chat(ChatId.local(user!.user.value.id), push: true); } }