PrinterTextStyle constructor

PrinterTextStyle({
  1. PTextSize? textSize,
  2. PTextDirection? textDirection,
  3. PTextFont? textFont,
  4. PTextAlignment? alignment,
  5. bool isBold = false,
  6. bool isUnderlined = false,
})

Implementation

PrinterTextStyle({
  this.textSize,
  this.textDirection,
  this.textFont,
  this.alignment,
  this.isBold = false,
  this.isUnderlined = false,
});