return True if it's an image message.
(self)
| 393 | return self._view_type == const.DC_MSG_TEXT |
| 394 | |
| 395 | def is_image(self): |
| 396 | """return True if it's an image message.""" |
| 397 | return self._view_type == const.DC_MSG_IMAGE |
| 398 | |
| 399 | def is_gif(self): |
| 400 | """return True if it's a gif message.""" |
no outgoing calls