TextPrintLine constructor

TextPrintLine({
  1. required String content,
  2. int? size = 24,
  3. bool? bold,
  4. bool? italic,
  5. bool? invert,
})

Implementation

TextPrintLine(
    {required this.content,
    this.size = 24,
    this.bold,
    this.italic,
    this.invert})
    : super(0);