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

description

String getdisplay

override

Gets the value of "display"

Implementation

String get display => this._display;

setdisplay (String? value)

override

Sets the value of "display"

Implementation

set display(String? value) {
  _display = value == null ? '' : value;
}