marginBottom property

  1. @override
CSSLengthValue marginBottom
override

Implementation

@override
CSSLengthValue get marginBottom => _marginBottom ?? CSSLengthValue.zero;
void marginBottom=(CSSLengthValue? value)

Implementation

set marginBottom(CSSLengthValue? value) {
  if (_marginBottom == value) return;
  _marginBottom = value;
  _markSelfAndParentNeedsLayout();
}