LabelAreaStyle constructor

LabelAreaStyle({
  1. Shape style = Shape.RECT_FILL,
  2. int? width = 50,
  3. int? height = 50,
  4. int? posX = 0,
  5. int? posY = 0,
  6. int? endX = 50,
  7. int? endY = 50,
  8. int? thick = 1,
})

Implementation

LabelAreaStyle({
  this.style = Shape.RECT_FILL,
  this.width = 50,
  this.height = 50,
  this.posX = 0,
  this.posY = 0,
  this.endX = 50,
  this.endY = 50,
  this.thick = 1,
});