setHeight method
Sets the height of the LoadMore widget and notifies listeners if it changes.
Implementation
void setHeight(double newHeight) {
if (_height != newHeight) {
_height = newHeight;
notifyListeners();
}
}
Sets the height of the LoadMore widget and notifies listeners if it changes.
void setHeight(double newHeight) {
if (_height != newHeight) {
_height = newHeight;
notifyListeners();
}
}