SimpleMapMarker constructor

const SimpleMapMarker({
  1. double lat = 0.0,
  2. double lng = 0.0,
  3. double radius = 10.0,
  4. Color color = Colors.white,
  5. ImageProvider<Object>? image,
})

Implementation

const SimpleMapMarker({
  this.lat = 0.0,
  this.lng = 0.0,
  this.radius = 10.0,
  this.color = Colors.white,
  this.image,
});