footerHeight property

  1. @override
double footerHeight
inherited

grid footer height

Implementation

@override
double get footerHeight {
  if (createFooter == null) {
    return 0;
  }

  return _state._footerHeight == null
      ? PlutoGridSettings.rowTotalHeight
      : _state._footerHeight!;
}
void footerHeight=(double value)
inherited

Implementation

set footerHeight(double value) {
  _state._footerHeight = value;
}