right property

double right

Gets the right space of padding.

Implementation

double get right => _right;
void 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;
}