ReportDesignBuilder constructor
const
ReportDesignBuilder({
- Key? key,
- required double cellWidth,
- required double bodyCellHeight,
- required double headerHeight,
- required double textSize,
- required double headerTextSize,
- required List<
HeaderCell> headers, - required List<
SubHeaderCell> subHeaders, - required List<
TextCell> leftColumn, - required List<
List< tableData,TextCell> > - required String stickyHeaderLabel,
- required Color stickyHeaderBackgroundColor,
- 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,
});