NiceSpreadsheetCellStyle constructor

const NiceSpreadsheetCellStyle({
  1. bool bold = false,
  2. bool italic = false,
  3. Color? textColor,
  4. Color? backgroundColor,
  5. TextAlign alignment = TextAlign.left,
})

Implementation

const NiceSpreadsheetCellStyle({
  this.bold = false,
  this.italic = false,
  this.textColor,
  this.backgroundColor,
  this.alignment = TextAlign.left,
});