height property

double get height

Implementation

double get height => _height;
set height (double value)

Implementation

set height(double value) {
  if (_height != value) {
    _height = value;
    _heightController.add(value);
    _visibilityController.add(value > 0);
    notifyListeners();
  }
}