marginRight property Null safety

String marginRight
override

Gets the value of "margin-right"

Implementation

String get marginRight => this._marginRight;
void marginRight=(String? value)
override

Sets the value of "margin-right"

Implementation

set marginRight(String? value) {
  _marginRight = value == null ? '' : value;
}