CellDimensions.uniform constructor
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,
);