DefaultLocationMarker constructor

const DefaultLocationMarker({
  1. Key? key,
  2. Color color = const Color.fromARGB(0xFF, 0x21, 0x96, 0xF3),
  3. required Widget child,
})

Create a DefaultLocationMarker.

Implementation

const DefaultLocationMarker({
  Key? key,
  this.color = const Color.fromARGB(0xFF, 0x21, 0x96, 0xF3),
  required this.child,
}) : super(key: key);