The default SchedulingStrategy for SchedulerBinding.schedulingStrategy.
If there are any frame callbacks registered, only runs tasks with a Priority of Priority.animation or higher. Otherwise, runs all tasks.
Source
bool defaultSchedulingStrategy({ int priority, SchedulerBinding scheduler }) { if (scheduler.transientCallbackCount > 0) return priority >= Priority.animation.value; return true; }