CircleOption constructor

CircleOption({
  1. required LatLng center,
  2. required double radius,
  3. double width = 5,
  4. Color strokeColor = Colors.green,
  5. Color fillColor = Colors.transparent,
})

Implementation

CircleOption({
  required this.center,
  required this.radius,
  this.width = 5,
  this.strokeColor = Colors.green,
  this.fillColor = Colors.transparent,
});