CellDimensions.uniform constructor

const CellDimensions.uniform({
  1. required double width,
  2. required double height,
})

Same dimensions for each cell.

Implementation

const CellDimensions.uniform({
  required double width,
  required double height,
}) : this.fixed(
        contentCellWidth: width,
        contentCellHeight: height,
        stickyLegendWidth: width,
        stickyLegendHeight: height,
      );