spaceAround method
How the children within a run should be placed in the main axis.
Using WrapAlignment.spaceAround
Equivalent to
Wrap(
alignment: WrapAlignment.spaceAround
)
Implementation
NikuWrap spaceAround() {
_alignment = WrapAlignment.spaceAround;
return this;
}