MapCircle constructor

const MapCircle({
  1. required MapLatLng center,
  2. double radius = 5,
  3. Color? color,
  4. Color? strokeColor,
  5. double? strokeWidth,
  6. VoidCallback? onTap,
})

Creates a MapCircle.

Implementation

const MapCircle({
  required this.center,
  this.radius = 5,
  this.color,
  this.strokeColor,
  this.strokeWidth,
  this.onTap,
});