crossCenter method

NikuWrap crossCenter()

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

Set WrapCrossAlignment.center

Equivalent to

Wrap(
  crossAxisAlignment: WrapCrossAlignment.center
)

Implementation

NikuWrap crossCenter() {
  _crossAxisAlignment = WrapCrossAlignment.center;

  return this;
}