schedule method
Schedules a callback
to be executed.
Implementation
@override
Disposable schedule(Callback0 callback) {
final action = SchedulerActionCallback0(callback);
zone.scheduleMicrotask(action.run);
return action;
}
Schedules a callback
to be executed.
@override
Disposable schedule(Callback0 callback) {
final action = SchedulerActionCallback0(callback);
zone.scheduleMicrotask(action.run);
return action;
}