treemapDice static method

void treemapDice(
  1. Row parent,
  2. double x0,
  3. double y0,
  4. double x1,
  5. double y1,
)

Implementation

static void treemapDice(Row parent, double x0, double y0, double x1, double y1) {
  DiceLayout.layoutChildren(Rect.fromLTRB(x0, y0, x1, y1), parent.children);
}