NUITableCellStyle constructor

NUITableCellStyle({
  1. required Alignment alignment,
  2. required TextStyle textStyle,
  3. Color? background,
  4. double? width,
  5. double? height,
  6. Color? outlineColor,
  7. double? outlineThickness,
  8. double? padding,
  9. TextAlign textAlign = TextAlign.start,
})

Implementation

NUITableCellStyle({
  required this.alignment,
  required this.textStyle,
  this.background,
  this.width,
  this.height,
  this.outlineColor,
  this.outlineThickness,
  this.padding,
  this.textAlign = TextAlign.start
});