CircleShape constructor

CircleShape({
  1. bool hollow = false,
  2. double strokeWidth = 1,
})

Creates a circle shape.

Implementation

CircleShape({
  bool hollow = false,
  double strokeWidth = 1,
}) : super(hollow, strokeWidth);