opacity property - CssStyleDeclarationBase class - dart:html library (original) (raw)
String getopacity
Gets the value of "opacity"
Implementation
String get opacity => getPropertyValue('opacity');
setopacity (String value)
Sets the value of "opacity"
Implementation
set opacity(String value) {
setProperty('opacity', value, '');
}