spaceAround method

NikuRow spaceAround()

Using MainAxisAlignment.spaceAround

Equivalent to

Row(
  mainAxisAlignment: MainAxisAlignment.spaceAround
)

Implementation

NikuRow spaceAround() {
  this._mainAxisAlignment = MainAxisAlignment.spaceAround;

  return this;
}