Show a message using toast by emitting a signal.
(self, message: str)
| 220 | return True |
| 221 | |
| 222 | def _show_message(self, message: str): |
| 223 | """Show a message using toast by emitting a signal.""" |
| 224 | self.emit("show-toast", message) |
| 225 | |
| 226 | def _connect_signals(self): |
| 227 | def connect_touch(widget, signal_name: str, option_key: str): |
no outgoing calls
no test coverage detected