checkYield method

bool checkYield(
  1. int step
)

Implementation

bool checkYield(int step) {
  if (enqueuedBuild == null) return false;
  return enqueuedBuild! <= step;
}