Circle constructor
Circle({
- Key? key,
- bool filled = false,
- required CircleUIConfig circleUIConfig,
- double extraSize = 0,
Implementation
Circle({
Key? key,
this.filled = false,
required this.circleUIConfig,
this.extraSize = 0,
}) : super(key: key);