scheduleAbsolute method
Schedules a callback
to be executed at the specified dateTime
.
Implementation
@override
Disposable scheduleAbsolute(DateTime dateTime, Callback0 callback) {
_busyWaitUntil(dateTime);
callback();
return const DisposedDisposable();
}