CiontekPrintLine constructor

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

Implementation

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