itemHeight property

double itemHeight

Implementation

double get itemHeight => _itemHeight!;
void itemHeight=(double value)

Implementation

set itemHeight(double value) {
  if (_itemHeight == value) return;
  _itemHeight = value;
  // The fact that the cell constraints changed could affect the built
  // output (e.g. if the cell builder uses LayoutBuilder).
  markNeedsBuild();
}