RectangleShape constructor

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

Implementation

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