GridTableSummaryRow constructor

GridTableSummaryRow({
  1. String? title,
  2. Color? color,
  3. required List<GridSummaryColumn> columns,
  4. required GridTableSummaryRowPosition position,
  5. int titleColumnSpan = 0,
  6. 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);