bottom property

  1. @override
CSSLengthValue bottom
override

Implementation

@override
CSSLengthValue get bottom => _bottom ?? CSSLengthValue.auto;
void bottom=(CSSLengthValue? value)

Implementation

set bottom(CSSLengthValue? value) {
  if (_bottom == value) {
    return;
  }
  _bottom = value;
  _markParentNeedsLayout();
}