top property
set
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;
}