Create a 1:1 chat with Account, Contact or e-mail address.
(self, obj)
| 397 | return (x for x in iter_array(dc_array, lambda x: Message.from_db(self, x)) if x is not None) |
| 398 | |
| 399 | def create_chat(self, obj) -> Chat: |
| 400 | """Create a 1:1 chat with Account, Contact or e-mail address.""" |
| 401 | return self.create_contact(obj).create_chat() |
| 402 | |
| 403 | def create_group_chat( |
| 404 | self, |