AbstractShape constructor

AbstractShape({
  1. Offset location = const Offset(0, 0),
  2. Size size = const Size(20, 20),
  3. Color color = Colors.grey,
  4. int zIndex = 0,
  5. int reactSize = 10,
})

Implementation

AbstractShape({
  this.location = const Offset(0, 0),
  this.size = const Size(20, 20),
  this.color = Colors.grey,
  this.zIndex = 0,
  this.reactSize = 10,
});