GridTableSummaryRow constructor
GridTableSummaryRow({
- String? title,
- Color? color,
- required List<
GridSummaryColumn> columns, - required GridTableSummaryRowPosition position,
- int titleColumnSpan = 0,
- bool showSummaryInRow = true,
Creates the GridTableSummaryRow to the SfDataGrid.
Implementation
GridTableSummaryRow(
{this.title,
this.color,
required this.columns,
required this.position,
this.titleColumnSpan = 0,
this.showSummaryInRow = true})
: assert(titleColumnSpan >= 0);