spaceEvenly method

NikuWrap spaceEvenly()

How the runs themselves should be placed in the cross axis.

Using WrapAlignment.spaceEvenly

Equivalent to

Wrap(
  alignment: WrapAlignment.spaceEvenly
)

Implementation

NikuWrap spaceEvenly() {
  _alignment = WrapAlignment.spaceEvenly;

  return this;
}