contentHeight property

double? get contentHeight

The height of the content. If null, it will be resolved based on autoContentHeight.

Implementation

double? get contentHeight => _contentHeight;
set contentHeight (double? value)

Implementation

set contentHeight(double? value) {
  _contentHeight = value;
  rebuild();
}