MarkerData constructor

MarkerData({
  1. required LatLng position,
  2. required String title,
  3. required String description,
  4. required String id,
  5. String? address,
  6. bool isLocal = false,
  7. bool isSaving = false,
  8. Color color = Colors.blue,
  9. bool isEncrypted = false,
})

Implementation

MarkerData({
  required this.position,
  required this.title,
  required this.description,
  required this.id,
  this.address,
  this.isLocal = false,
  this.isSaving = false,
  this.color = Colors.blue,
  this.isEncrypted = false,
});