RTreeEntry<T> constructor

RTreeEntry<T>(
  1. Bounds bounds, {
  2. T? data,
  3. RTreeNode<T>? child,
})

Implementation

RTreeEntry(this.bounds, {this.data, this.child});