GeoformContext<U extends GeoformMarkerDatum> constructor

GeoformContext<U extends GeoformMarkerDatum>({
  1. required LatLng currentUserPosition,
  2. required LatLng currentMapPosition,
  3. required GeoformState<U> geostate,
  4. required GeoFunctions<U> functions,
  5. Map<String, dynamic>? extra,
  6. String? actionText,
})

Implementation

GeoformContext({
  required this.currentUserPosition,
  required this.currentMapPosition,
  required this.geostate,
  required this.functions,
  this.extra,
  this.actionText,
});