GridPinnedQuadrant<T extends DataGridRow> constructor

const GridPinnedQuadrant<T extends DataGridRow>({
  1. Key? key,
  2. required List<DataGridColumn<T>> columns,
  3. required List<int> pinnedIndices,
  4. required double viewportHeight,
  5. required List<double> displayOrder,
  6. required Map<double, T> rowsById,
  7. required int rowCount,
  8. required double rowHeight,
  9. required double cacheExtent,
  10. required Color backgroundColor,
  11. required ValueNotifier<double> vOffset,
})

Implementation

const GridPinnedQuadrant({
  super.key,
  required this.columns,
  required this.pinnedIndices,
  required this.viewportHeight,
  required this.displayOrder,
  required this.rowsById,
  required this.rowCount,
  required this.rowHeight,
  required this.cacheExtent,
  required this.backgroundColor,
  required this.vOffset,
});