TableThemeEffect constructor

TableThemeEffect({
  1. Style? style,
  2. TableThemeSection section = TableThemeSection.all,
  3. int? row,
  4. int? column,
  5. List<Color> gradient = const [],
  6. TableBlendMode blendMode = TableBlendMode.normal,
  7. TableThemeGradientAxis gradientAxis = TableThemeGradientAxis.horizontal,
})

Creates a new table theme effect.

Implementation

TableThemeEffect({
  this.style,
  this.section = TableThemeSection.all,
  this.row,
  this.column,
  this.gradient = const [],
  this.blendMode = TableBlendMode.normal,
  this.gradientAxis = TableThemeGradientAxis.horizontal,
});