DefaultLocationMarker constructor

const DefaultLocationMarker({
  1. Key? key,
  2. Color color = const Color(0xFF2196F3),
  3. Widget? child,
})

Create a DefaultLocationMarker.

Implementation

const DefaultLocationMarker({
  super.key,
  this.color = const Color(0xFF2196F3),
  this.child,
});