FdcGridStyle constructor

const FdcGridStyle({
  1. FdcGridLines? gridLines,
  2. Color? gridLineColor,
  3. double? pinnedSeparatorInset,
  4. FdcGridVerticalLines? verticalGridLines,
  5. Color? borderColor,
  6. Color? backgroundColor,
  7. Color? rowIndicatorBackgroundColor,
  8. TextStyle? cellTextStyle,
  9. Color? disabledCellBackgroundColor,
  10. Color? selectedCellBackgroundColor,
  11. Color? selectedRowColor,
})

Creates a FdcGridStyle.

Implementation

const FdcGridStyle({
  this.gridLines,
  this.gridLineColor,
  this.pinnedSeparatorInset,
  this.verticalGridLines,
  this.borderColor,
  this.backgroundColor,
  this.rowIndicatorBackgroundColor,
  this.cellTextStyle,
  this.disabledCellBackgroundColor,
  this.selectedCellBackgroundColor,
  this.selectedRowColor,
});