GeoBounds<T extends GeoPoint>.of constructor

const GeoBounds<T extends GeoPoint>.of({
  1. required T min,
  2. required T max,
})

Create geographic bounds with required min and max points.

min and max objects set on the bounds may or may not to be immutable.

Implementation

const GeoBounds.of({
  required super.min,
  required super.max,
});