all property

set all (double value)

Sets space value to all sides of a cell Left,Right,Top,Bottom.

Implementation

// ignore: avoid_setters_without_getters
set all(double value) {
  if (value < 0) {
    ArgumentError.value(
      value,
      'all',
      'value should greater than or equal to zero',
    );
  }
  _left = _right = _bottom = _top = value;
}