TShape constructor

const TShape({
  1. Key? key,
  2. TShapeType shape = TShapeType.stRectangle,
  3. Color brushColor = Colors.white,
  4. Color penColor = Colors.black,
  5. double penWidth = 1,
  6. double? width,
  7. double? height,
})

Implementation

const TShape({
  super.key,
  this.shape = TShapeType.stRectangle,
  this.brushColor = Colors.white,
  this.penColor = Colors.black,
  this.penWidth = 1,
  this.width,
  this.height,
});