marginRight property
Implementation
@override
CSSLengthValue get marginRight => _marginRight ?? CSSLengthValue.zero;
set
marginRight
(CSSLengthValue? value)
Implementation
set marginRight(CSSLengthValue? value) {
if (_marginRight == value) return;
_marginRight = value;
_markSelfAndParentNeedsLayout();
}