LocationMarkerStyle constructor

const LocationMarkerStyle({
  1. Widget marker = const DefaultLocationMarker(),
  2. Size markerSize = const Size.square(20),
  3. Alignment markerAlignment = Alignment.center,
  4. MarkerDirection markerDirection = MarkerDirection.top,
  5. bool showAccuracyCircle = true,
  6. Color accuracyCircleColor = const Color(0x182196F3),
  7. bool showHeadingSector = true,
  8. double headingSectorRadius = 60,
  9. Color headingSectorColor = const Color(0xCC2196F3),
})

Create a LocationMarkerStyle.

Implementation

const LocationMarkerStyle({
  this.marker = const DefaultLocationMarker(),
  this.markerSize = const Size.square(20),
  this.markerAlignment = Alignment.center,
  this.markerDirection = MarkerDirection.top,
  this.showAccuracyCircle = true,
  this.accuracyCircleColor = const Color(0x182196F3),
  this.showHeadingSector = true,
  this.headingSectorRadius = 60,
  this.headingSectorColor = const Color(0xCC2196F3),
});