CellStyle constructor

const CellStyle({
  1. int? paddingLeft,
  2. int? paddingRight,
  3. int? paddingTop,
  4. int? paddingBottom,
  5. bool? borderLeft,
  6. bool? borderRight,
  7. bool? borderTop,
  8. bool? borderBottom,
  9. TextAlignment? alignment,
})

Implementation

const CellStyle(
    {this.paddingLeft,
    this.paddingRight,
    this.paddingTop,
    this.paddingBottom,
    this.borderLeft,
    this.borderRight,
    this.borderTop,
    this.borderBottom,
    this.alignment});