marginRight property - CssStyleDeclaration class - dart:html library (original) (raw)
String getmarginRight
override
Gets the value of "margin-right"
Implementation
String get marginRight => this._marginRight;
setmarginRight (String? value)
override
Sets the value of "margin-right"
Implementation
set marginRight(String? value) {
_marginRight = value == null ? '' : value;
}