MapSection constructor

const MapSection({
  1. double? heightFactor,
  2. required List<RoutePoint> route,
  3. required LatLng startPoint,
  4. required bool showStartPoint,
  5. required Color primaryColor,
  6. required Map<int, BitmapDescriptor> numberedMarkers,
  7. required Map<int, BitmapDescriptor> focusedMarkers,
  8. required int? focusedIndex,
  9. required void onPointTap(
    1. LatLng,
    2. int
    ),
  10. required void onMapCreated(
    1. GoogleMapController
    ),
})

Implementation

const MapSection({
  this.heightFactor,
  required this.route,
  required this.startPoint,
  required this.showStartPoint,
  required this.primaryColor,
  required this.numberedMarkers,
  required this.focusedMarkers,
  required this.focusedIndex,
  required this.onPointTap,
  required this.onMapCreated,
});