QuadTree<T> constructor
Implementation
factory QuadTree(
num left,
num top,
num width,
num height, {
int? maxDepth,
int? maxItems,
}) =>
QuadTree._(
left,
top,
width,
height,
0,
maxDepth: maxDepth,
maxItems: maxItems,
);