CircleShape constructor

const CircleShape({
  1. Color? fillColor,
  2. Color? strokeColor,
  3. double? strokeWidth,
})

Creates a circle shape.

Parameters:

  • fillColor - The fill color for the circle background
  • strokeColor - The stroke color for the circle outline
  • strokeWidth - The stroke width for the circle outline

Implementation

const CircleShape({super.fillColor, super.strokeColor, super.strokeWidth});