overflow property - CssStyleDeclaration class - dart:html library (original) (raw)
String getoverflow
override
Gets the value of "overflow"
Implementation
String get overflow => this._overflow;
setoverflow (String? value)
override
Sets the value of "overflow"
Implementation
set overflow(String? value) {
_overflow = value == null ? '' : value;
}