marginBottom property

String get marginBottom
override

Gets the value of "margin-bottom"

Implementation

String get marginBottom => this._marginBottom;
set marginBottom (String? value)
override

Sets the value of "margin-bottom"

Implementation

set marginBottom(String? value) {
  _marginBottom = value == null ? '' : value;
}