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