tick method

Future<void> tick()

Implementation

Future<void> tick() async {
  try {
    if (await checkWorkingDirectory()) {
      await onTick();
    }
  } catch (e, es) {
    error("TICK ERROR $e $es");
  }
}