TextFormat constructor

TextFormat({
  1. int textSize = 0,
  2. int textWidthRatio = 0,
  3. int textHeightRatio = 0,
  4. int textSpace = 0,
  5. bool enUnderline = false,
  6. bool enStrikethrough = false,
  7. bool enItalics = false,
  8. bool enInvert = false,
  9. bool enAntiColor = false,
  10. bool enBold = false,
  11. String customFont = '',
})

Implementation

TextFormat({
  this.textSize = 0,
  this.textWidthRatio = 0,
  this.textHeightRatio = 0,
  this.textSpace = 0,
  this.enUnderline = false,
  this.enStrikethrough = false,
  this.enItalics = false,
  this.enInvert = false,
  this.enAntiColor = false,
  this.enBold = false,
  this.customFont = '',
}) : super();