GertecText constructor

GertecText({
  1. required String text,
  2. FontSize fontSize = FontSize.NORMAL,
  3. PrintAlign algin = PrintAlign.LEFT,
  4. bool? bold,
  5. bool? underline,
  6. bool? wordwrap,
  7. int? lineHeight,
  8. int? letterSpacing,
  9. int? marginLeft,
})

Implementation

GertecText({
  required this.text,
  this.fontSize = FontSize.NORMAL,
  this.algin = PrintAlign.LEFT,
  this.bold,
  this.underline,
  this.wordwrap,
  this.lineHeight,
  this.letterSpacing,
  this.marginLeft,
});