NiceSpreadsheet constructor

const NiceSpreadsheet({
  1. Key? key,
  2. List<NiceSpreadsheetSheet>? sheets,
  3. void onCellChanged(
    1. String sheet,
    2. String cellRef,
    3. dynamic value
    )?,
  4. int visibleRows = 25,
  5. int visibleCols = 10,
  6. double columnWidth = 100,
  7. double rowHeight = 30,
})

Implementation

const NiceSpreadsheet({
  super.key,
  this.sheets,
  this.onCellChanged,
  this.visibleRows = 25,
  this.visibleCols = 10,
  this.columnWidth = 100,
  this.rowHeight = 30,
});