maxHeight property - CssStyleDeclaration class - dart:html library (original) (raw)

description

String getmaxHeight

override

Gets the value of "max-height"

Implementation

String get maxHeight => this._maxHeight;

setmaxHeight (String? value)

override

Sets the value of "max-height"

Implementation

set maxHeight(String? value) {
  _maxHeight = value == null ? '' : value;
}