explainAllOverflows static method

List<LayoutExplanation> explainAllOverflows()

Explain all recent overflows from the recorder's buffer.

Implementation

static List<LayoutExplanation> explainAllOverflows() {
  return LayoutDecisionRecorder.instance.overflows
      .map((d) => explain(d))
      .toList();
}