pub trait ScheduleFlush { // Required method fn schedule(&self, callback: Box<dyn FnOnce()>); }
Platform hook for scheduling a microtask callback.
Request that callback runs at the next microtask boundary.
callback