setTextAreaHeight method
Implementation
void setTextAreaHeight(double h) {
final clamped = h.clamp(_kTextAreaMinHeight, _kTextAreaMaxHeight);
if (_textAreaHeight != clamped) {
setState(() => _textAreaHeight = clamped);
}
}
void setTextAreaHeight(double h) {
final clamped = h.clamp(_kTextAreaMinHeight, _kTextAreaMaxHeight);
if (_textAreaHeight != clamped) {
setState(() => _textAreaHeight = clamped);
}
}