TableStyle constructor

const TableStyle({
  1. Color? borderColor,
  2. double? borderWidth,
  3. Radius? borderRadius,
  4. EdgeInsetsGeometry? cellPadding,
  5. Color? headerBackground,
  6. TextStyle? headerTextStyle,
  7. Color? rowStripeColor,
})

Creates a TableStyle. Null fields defer to the theme, then to the default.

Implementation

const TableStyle({
  this.borderColor,
  this.borderWidth,
  this.borderRadius,
  this.cellPadding,
  this.headerBackground,
  this.headerTextStyle,
  this.rowStripeColor,
});