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