CellDimensions constructor

const CellDimensions(
  1. {@required double contentCellWidth,
  2. @required double contentCellHeight,
  3. @required double stickyLegendWidth,
  4. @required double stickyLegendHeight}
)

Implementation

const CellDimensions({
  /// Content cell width. It also applied to sticky row width.
  @required this.contentCellWidth,

  /// Content cell height. It also applied to sticky column height.
  @required this.contentCellHeight,

  /// Sticky legend width. It also applied to sticky column width.
  @required this.stickyLegendWidth,

  /// Sticky legend height/ It also applied to sticky row height.
  @required this.stickyLegendHeight,
});