GridProperties constructor

GridProperties({
  1. int? columnCount,
  2. bool? columnGroupControlAfter,
  3. int? frozenColumnCount,
  4. int? frozenRowCount,
  5. bool? hideGridlines,
  6. int? rowCount,
  7. bool? rowGroupControlAfter,
})

Implementation

GridProperties({
  this.columnCount,
  this.columnGroupControlAfter,
  this.frozenColumnCount,
  this.frozenRowCount,
  this.hideGridlines,
  this.rowCount,
  this.rowGroupControlAfter,
});