CircleOptions constructor

const CircleOptions({
  1. double? circleRadius,
  2. String? circleColor,
  3. double? circleBlur,
  4. double? circleOpacity,
  5. double? circleStrokeWidth,
  6. String? circleStrokeColor,
  7. double? circleStrokeOpacity,
  8. LatLng? geometry,
  9. bool? draggable,
})

Creates a set of circle configuration options.

By default, every non-specified field is null, meaning no desire to change circle defaults or current configuration.

Implementation

const CircleOptions({
  this.circleRadius,
  this.circleColor,
  this.circleBlur,
  this.circleOpacity,
  this.circleStrokeWidth,
  this.circleStrokeColor,
  this.circleStrokeOpacity,
  this.geometry,
  this.draggable,
});