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

description

String getminHeight

override

Gets the value of "min-height"

Implementation

String get minHeight => this._minHeight;

setminHeight (String? value)

override

Sets the value of "min-height"

Implementation

set minHeight(String? value) {
  _minHeight = value == null ? '' : value;
}