justifyStart method

NikuWrap justifyStart()

How the children within a run should be placed in the main axis.

Using WrapAlignment.start

Equivalent to

Wrap(
  alignment: WrapAlignment.start
)

Implementation

NikuWrap justifyStart() {
  _alignment = WrapAlignment.start;

  return this;
}