scheduleBuild method

void scheduleBuild(
  1. VoidCallback buildCallback
)

Schedules a build and ultimately calls _handleFrame with the provided buildCallback.

Implementation

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