Bounds<T extends Point<num>>.of constructor

Bounds<T extends Point<num>>.of({
  1. required T min,
  2. required T max,
})

Create bounds with required (and non-empty) min and max points.

Implementation

factory Bounds.of({required T min, required T max}) = BoundsBase;