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