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