MapScreen constructor

const MapScreen({
  1. Key? key,
  2. required String customMarkerPath,
  3. required String customMidMarkerPath,
  4. Color? boundaryLineColor,
  5. Color? fillColor,
})

Creates a MapScreen instance with the given custom styling and assets.

Implementation

const MapScreen({
  super.key,
  required this.customMarkerPath,
  required this.customMidMarkerPath,
  this.boundaryLineColor,
  this.fillColor,
});