CiontekPrintLine constructor

CiontekPrintLine({
  1. required String text,
  2. TextGray textGray = TextGray.medium,
  3. bool bold = false,
  4. bool increaseFontSize = false,
  5. bool reverse = false,
  6. bool underline = false,
})

Implementation

CiontekPrintLine({
  required this.text,
  this.textGray = TextGray.medium,
  this.bold = false,
  this.increaseFontSize = false,
  this.reverse = false,
  this.underline = false,
});