scheduleBuild method

void scheduleBuild(
  1. VoidCallback buildCallback
)
inherited

Schedules a build and ultimately calls handleFrame with the provided buildCallback

Implementation

void scheduleBuild(VoidCallback buildCallback) {
  scheduleFrame(() => _handleFrame(buildCallback));
}