PlanItem constructor

PlanItem({
  1. required LatLng latLng,
  2. required String iconPath,
  3. bool showScope = false,
  4. double scope = 300,
  5. bool showConnecting = false,
  6. String? markerId,
  7. String? scopeId,
  8. String? conineId,
})

Implementation

PlanItem({
  required this.latLng,
  required this.iconPath,
  this.showScope = false,
  this.scope = 300,
  this.showConnecting = false,
  this.markerId,
  this.scopeId,
  this.conineId,
});