top property

double top

Gets the top space of padding.

Implementation

double get top => _top;
void top=(double value)

Sets the top space of padding.

Implementation

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