scheduleFrame method

  1. @override
void scheduleFrame()
override

Requests that, at the next appropriate opportunity, the onBeginFrame and onDrawFrame callbacks be invoked.

See also:

  • SchedulerBinding, the Flutter framework class which manages the scheduling of frames.

Implementation

@override
void scheduleFrame() {
  _platformDispatcher.scheduleFrame();
}