EditCellStyle constructor

const EditCellStyle({
  1. String? fontFamily,
  2. double? fontSize,
  3. bool bold = false,
  4. bool italic = false,
  5. double padLeft = 0,
  6. double padTop = 0,
  7. double padRight = 0,
  8. double padBottom = 0,
})

Implementation

const EditCellStyle({
  this.fontFamily,
  this.fontSize,
  this.bold = false,
  this.italic = false,
  this.padLeft = 0,
  this.padTop = 0,
  this.padRight = 0,
  this.padBottom = 0,
});