right property

double get right

Gets the right space of padding.

Implementation

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