TableCellStyle constructor

TableCellStyle({
  1. OptionalColor? backgroundColor,
  2. TableCellBorder? borderBottom,
  3. TableCellBorder? borderLeft,
  4. TableCellBorder? borderRight,
  5. TableCellBorder? borderTop,
  6. int? columnSpan,
  7. String? contentAlignment,
  8. Dimension? paddingBottom,
  9. Dimension? paddingLeft,
  10. Dimension? paddingRight,
  11. Dimension? paddingTop,
  12. int? rowSpan,
})

Implementation

TableCellStyle({
  this.backgroundColor,
  this.borderBottom,
  this.borderLeft,
  this.borderRight,
  this.borderTop,
  this.columnSpan,
  this.contentAlignment,
  this.paddingBottom,
  this.paddingLeft,
  this.paddingRight,
  this.paddingTop,
  this.rowSpan,
});