CircleShape constructor
CircleShape({
- Offset location = const Offset(0, 0),
- Size size = const Size(20, 20),
- Color color = Colors.grey,
- int zIndex = 0,
- Color? borderColor,
- String text = '',
- TextAlign textAlign = TextAlign.center,
- TextStyle textStyle = const TextStyle(color: Colors.black, fontSize: 20),
- Radius borderRadius = Radius.zero,
- int reactSize = 10,
Implementation
CircleShape({
super.location,
super.size,
super.color,
super.zIndex,
super.borderColor,
super.text,
super.textAlign,
super.textStyle,
super.borderRadius,
super.reactSize,
});