ColumnResizeUpdateDetails constructor

const ColumnResizeUpdateDetails({
  1. required GridColumn column,
  2. required double width,
  3. required int columnIndex,
})

Creates the ColumnResizeUpdateDetails with the specified column and width.

Implementation

const ColumnResizeUpdateDetails(
    {required this.column, required this.width, required this.columnIndex});