(self)
| 187 | |
| 188 | @property |
| 189 | def service_worker(self) -> Optional["Worker"]: |
| 190 | return cast( |
| 191 | Optional["Worker"], |
| 192 | from_nullable_channel(self._initializer.get("serviceWorker")), |
| 193 | ) |
| 194 | |
| 195 | @property |
| 196 | def method(self) -> str: |
nothing calls this directly
no test coverage detected