CircleOptions constructor

CircleOptions({
  1. required LatLng target,
  2. required double radius,
  3. Color fillColor = Colors.black,
  4. Color strokeColor = Colors.black,
  5. double strokeWidth = 2.0,
})

Implementation

CircleOptions({
  required this.target,
  required this.radius,
  this.fillColor = Colors.black,
  this.strokeColor = Colors.black,
  this.strokeWidth = 2.0,
});