RowStyleParam<T> constructor

RowStyleParam<T>({
  1. T? data,
  2. double? rowWidth,
  3. List<double>? cellWidth,
  4. List<double>? cellFlex,
  5. double? minCellWidth,
  6. int? index,
  7. bool enableDivider = false,
})

Implementation

RowStyleParam({
  this.data,
  this.rowWidth,
  this.cellWidth,
  this.cellFlex,
  this.minCellWidth,
  this.index,
  this.enableDivider = false,
});