CirclePath constructor

const CirclePath({
  1. required Location center,
  2. required int radius,
  3. int detail = 45,
  4. bool encoded = false,
  5. int? weight,
  6. Color? color,
  7. Color? fillColor,
  8. bool? geodesic,
})

Implementation

const CirclePath({
  required this.center,
  required this.radius,
  this.detail = 45,
  bool encoded = false,
  int? weight,
  Color? color,
  Color? fillColor,
  bool? geodesic,
}) : super._internal(
        encoded: encoded,
        color: color,
        weight: weight,
        fillColor: fillColor,
        geodesic: geodesic,
      );