Path.circle constructor

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

Draws a circle path.

Implementation

const factory Path.circle({
  required Location center,
  required int radius,
  int detail,
  bool encoded,
  int? weight,
  Color? color,
  Color? fillColor,
  bool? geodesic,
}) = CirclePath;