int computeMissedFrameBuildBudgetCount([Duration frameBuildBudget = kBuildBudget ])

The number of frames that missed the kBuildBudget and therefore are in the danger of missing frames.

Source

int computeMissedFrameBuildBudgetCount([Duration frameBuildBudget = kBuildBudget]) => _extractFrameEvents()
  .where((TimedEvent event) => event.duration > kBuildBudget)
  .length;