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