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