GeoFactoryBase<PointType extends Point<num>> constructor

const GeoFactoryBase<PointType extends Point<num>>({
  1. required PointFactory<PointType> pointFactory,
  2. required CreateBounds<PointType> boundsFactory,
  3. required CreateFeature featureFactory,
})

A constructor of GeoFactoryBase with point and feature factories given.

Implementation

const GeoFactoryBase({
  required this.pointFactory,
  required this.boundsFactory,
  required this.featureFactory,
});