MyLocationOption constructor

MyLocationOption({
  1. bool show = true,
  2. MyLocationType myLocationType = MyLocationType.Locate,
  3. Duration interval = Duration.zero,
  4. Color strokeColor = Colors.transparent,
  5. double strokeWidth = 0,
  6. Color fillColor = Colors.transparent,
  7. ImageProvider<Object>? iconProvider,
  8. double? anchorU,
  9. double? anchorV,
})

Implementation

MyLocationOption({
  this.show = true,
  this.myLocationType = MyLocationType.Locate,
  this.interval = Duration.zero,
  this.strokeColor = Colors.transparent,
  this.strokeWidth = 0,
  this.fillColor = Colors.transparent,
  this.iconProvider,
  this.anchorU,
  this.anchorV,
});