CellMetrics constructor

CellMetrics(
  1. double width,
  2. double height, {
  3. double? contentHeight,
})

Implementation

CellMetrics(this.width, this.height, {double? contentHeight})
    : contentHeight = contentHeight ?? height;