go method

Future<void> go()

Implementation

Future<void> go() async {
  if (watch) {
    final Watcher watcher = Watcher(await _go(), () {
      _go();
    });
    watcher.startWatch();
  } else {
    _go();
  }
}