LocationMarkerLayer constructor

const LocationMarkerLayer({
  1. Key? key,
  2. required LocationMarkerPosition position,
  3. LocationMarkerHeading? heading,
  4. LocationMarkerStyle style = const LocationMarkerStyle(),
})

Create a LocationMarkerLayer.

Implementation

const LocationMarkerLayer({
  super.key,
  required this.position,
  this.heading,
  this.style = const LocationMarkerStyle(),
});