LabelCanvasStyle constructor

LabelCanvasStyle({
  1. int? width = 50,
  2. int? height = 50,
  3. int? posX = 0,
  4. int? posY = 0,
})

Implementation

LabelCanvasStyle({
  this.width = 50,
  this.height = 50,
  this.posX = 0,
  this.posY = 0,
});