direction property

Axis direction

The direction to use as the main axis.

Implementation

Axis get direction => _direction;
void direction= (Axis value)

Implementation

set direction(Axis value) {
  assert(value != null);
  if (_direction != value) {
    _direction = value;
    markNeedsLayout();
  }
}