right property
set
right
(double value)
Sets the right space of padding.
Implementation
set right(double value) {
if (value < 0) {
ArgumentError.value(
value,
'right',
'value should greater than or equal to zero',
);
}
_right = value;
}