CellThemeData constructor

const CellThemeData({
  1. TextStyle? textStyle,
  2. CellNullColor? nullValueColor,
  3. double contentHeight = CellThemeDataDefaults.contentHeight,
  4. TextOverflow? overflow = CellThemeDataDefaults.overflow,
  5. Alignment alignment = CellThemeDataDefaults.alignment,
  6. EdgeInsets? padding = CellThemeDataDefaults.padding,
  7. bool overrideInputDecoration = CellThemeDataDefaults.overrideInputDecoration,
})

Builds a theme data.

Implementation

const CellThemeData(
    {this.textStyle,
    this.nullValueColor,
    this.contentHeight = CellThemeDataDefaults.contentHeight,
    this.overflow = CellThemeDataDefaults.overflow,
    this.alignment = CellThemeDataDefaults.alignment,
    this.padding = CellThemeDataDefaults.padding,
    this.overrideInputDecoration =
        CellThemeDataDefaults.overrideInputDecoration});