TableStats constructor

TableStats({
  1. double? averageCellsPerColumn,
  2. double? averageColumnsPerRow,
  3. String? logicalDataBytes,
  4. String? rowCount,
})

Implementation

TableStats({
  this.averageCellsPerColumn,
  this.averageColumnsPerRow,
  this.logicalDataBytes,
  this.rowCount,
});