RectangleShape constructor

RectangleShape({
  1. Color? borderColor,
  2. Radius borderRadius = Radius.zero,
  3. Offset location = const Offset(0, 0),
  4. Size size = const Size(20, 20),
  5. Color color = Colors.grey,
  6. int zIndex = 0,
  7. int reactSize = 10,
})

Implementation

RectangleShape({
  this.borderColor,
  this.borderRadius = Radius.zero,
  super.location,
  super.size,
  super.color,
  super.zIndex,
  super.reactSize,
});