PrintRowData constructor

PrintRowData({
  1. required String content,
  2. double paddingLeft = 10,
  3. double width = 100,
  4. double height = 100,
  5. String font = "2",
  6. PrintType contentType = PrintType.text,
  7. required double paddingToTopOfInvoice,
})

Implementation

PrintRowData(
    {required this.content,
    this.paddingLeft = 10,
    this.width = 100,
    this.height = 100,
    this.font = "2",
    this.contentType = PrintType.text,
    required this.paddingToTopOfInvoice});