RowThemeData constructor

const RowThemeData({
  1. ThemeRowColor? color,
  2. bool lastDividerVisible = RowThemeDataDefaults.lastDividerVisible,
  3. ThemeRowColor? hoverBackground,
  4. ThemeRowColor? hoverForeground,
  5. double dividerThickness = RowThemeDataDefaults.dividerThickness,
  6. Color? dividerColor = RowThemeDataDefaults.dividerColor,
  7. bool fillHeight = RowThemeDataDefaults.fillHeight,
  8. MouseCursor cursor = RowThemeDataDefaults.cursor,
  9. bool cursorOnTapGesturesOnly = RowThemeDataDefaults.cursorOnTapGesturesOnly,
})

Builds a row theme data.

Implementation

const RowThemeData(
    {this.color,
    this.lastDividerVisible = RowThemeDataDefaults.lastDividerVisible,
    this.hoverBackground,
    this.hoverForeground,
    this.dividerThickness = RowThemeDataDefaults.dividerThickness,
    this.dividerColor = RowThemeDataDefaults.dividerColor,
    this.fillHeight = RowThemeDataDefaults.fillHeight,
    this.cursor = RowThemeDataDefaults.cursor,
    this.cursorOnTapGesturesOnly =
        RowThemeDataDefaults.cursorOnTapGesturesOnly});