CircleShape constructor

CircleShape({
  1. Offset location = const Offset(0, 0),
  2. Size size = const Size(20, 20),
  3. Color color = Colors.grey,
  4. int zIndex = 0,
  5. Color? borderColor,
  6. String text = '',
  7. TextAlign textAlign = TextAlign.center,
  8. TextStyle textStyle = const TextStyle(color: Colors.black, fontSize: 20),
  9. Radius borderRadius = Radius.zero,
  10. 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,
});