NiceSpreadsheetSheet constructor

NiceSpreadsheetSheet({
  1. required String name,
  2. int rows = 100,
  3. int cols = 26,
})

Implementation

NiceSpreadsheetSheet({
  required this.name,
  int rows = 100,
  int cols = 26,
})  : rowCount = rows,
      colCount = cols,
      cells = {};