TTableStyle constructor

const TTableStyle({
  1. Decoration? headerDecoration,
  2. EdgeInsets headerPadding = const EdgeInsets.symmetric(horizontal: 8, vertical: 12),
  3. TextStyle? headerTextStyle,
  4. EdgeInsets contentPadding = const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
  5. TextStyle? contentTextStyle,
  6. TCardStyle cardStyle = const TCardStyle(),
  7. TRowStyle rowStyle = const TRowStyle(),
})

Implementation

const TTableStyle({
  this.headerDecoration,
  this.headerPadding = const EdgeInsets.symmetric(horizontal: 8, vertical: 12),
  this.headerTextStyle,
  this.contentPadding = const EdgeInsets.symmetric(horizontal: 8, vertical: 8),
  this.contentTextStyle,
  this.cardStyle = const TCardStyle(),
  this.rowStyle = const TRowStyle(),
});