bottom property

double bottom

Gets the bottom space of padding.

Implementation

double get bottom => _bottom;
void bottom=(double value)

Sets the bottom space of padding.

Implementation

set bottom(double value) {
  if (value < 0) {
    ArgumentError.value(
        value, 'bottom', 'value should greater than or equal to zero');
  }
  _bottom = value;
}