FlutterHandler implements FrameworkHandler for Flutter projects.
| 26 | |
| 27 | // FlutterHandler implements FrameworkHandler for Flutter projects. |
| 28 | type FlutterHandler struct { |
| 29 | mobaiURL string |
| 30 | noAttach bool |
| 31 | noWatch bool |
| 32 | watchConfig *config.WatchConfig |
| 33 | watcher watcher |
| 34 | stdinMux *StdinMux |
| 35 | cancelWatch context.CancelFunc |
| 36 | } |
| 37 | |
| 38 | // NewFlutterHandler creates a new Flutter handler. |
| 39 | func NewFlutterHandler(mobaiURL string, noAttach, noWatch bool, watchCfg *config.WatchConfig) *FlutterHandler { |
nothing calls this directly
no outgoing calls
no test coverage detected