marginBottom property

double? marginBottom
inherited

Implementation

double? get marginBottom => _marginBottom;
void marginBottom=(double? value)
inherited

Implementation

set marginBottom(double? value) {
  if (value != null) {
    value = value >= 0 ? value : 0;
  }
  _marginBottom = value;
}