SpreadsheetCell constructor

SpreadsheetCell({
  1. int? fontSize,
  2. bool? fontIsBold,
  3. Color? foregroundColor,
  4. Color? backgroundColor,
  5. SpreadsheetCellBorder? border,
  6. required SpreadsheetCellContent content,
})

Implementation

SpreadsheetCell({
  this.fontSize,
  this.fontIsBold,
  this.foregroundColor,
  this.backgroundColor,
  this.border,
  required this.content,
});