ReportDesignBuilder constructor

const ReportDesignBuilder({
  1. Key? key,
  2. required double cellWidth,
  3. required double bodyCellHeight,
  4. required double headerHeight,
  5. required double textSize,
  6. required double headerTextSize,
  7. required List<HeaderCell> headers,
  8. required List<SubHeaderCell> subHeaders,
  9. required List<TextCell> leftColumn,
  10. required List<List<TextCell>> tableData,
  11. required String stickyHeaderLabel,
  12. required Color stickyHeaderBackgroundColor,
  13. required Color stickyHeaderForegroundColor,
})

Implementation

const ReportDesignBuilder({
  super.key,
  required this.cellWidth,
  required this.bodyCellHeight,
  required this.headerHeight,
  required this.textSize,
  required this.headerTextSize,
  required this.headers,
  required this.subHeaders,
  required this.leftColumn,
  required this.tableData,
  required this.stickyHeaderLabel,
  required this.stickyHeaderBackgroundColor,
  required this.stickyHeaderForegroundColor,
});