start method
Starts the clock.
Implementation
@override
void start({required AudioClockCallback onTick}) {
_stopwatch.start();
while (_stopwatch.isRunning) {
onTick(this);
}
}
Starts the clock.
@override
void start({required AudioClockCallback onTick}) {
_stopwatch.start();
while (_stopwatch.isRunning) {
onTick(this);
}
}