verticalDirection method

NikuWrap verticalDirection(
  1. VerticalDirection direction
)

Determines the order to lay children out vertically and how to interpret start and end in the vertical direction.

Equivalent to

Stack(verticalDirection: input)

Implementation

NikuWrap verticalDirection(VerticalDirection direction) {
  _verticalDirection = direction;

  return this;
}