crossAxisAlignment method

NikuWrap crossAxisAlignment(
  1. WrapCrossAlignment crossAxisAlignment
)

How the children within a run should be aligned relative to each other in the cross axis.

Equivalent to

Wrap(
  crossAxisAlignment: input
)

Implementation

NikuWrap crossAxisAlignment(WrapCrossAlignment crossAxisAlignment) {
  _crossAxisAlignment = crossAxisAlignment;

  return this;
}