height property

String height

Implementation

String get height => _height;
void height=(String value)

Implementation

set height(String value) {
  if (_height != value) {
    _height = value;
    markNeedsLayout();
  }
}