TreeMapLayout constructor

TreeMapLayout({
  1. required List<TreeNode> children,
  2. Tile tile = const Squarify(),
  3. bool round = false,
  4. Duration? duration,
})

Implementation

TreeMapLayout({
  required this.children,
  this.tile = const Squarify(),
  this.round = false,
  this.duration,
});