runJustifyEnd method

NikuWrap runJustifyEnd()

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

Using WrapAlignment.end

Equivalent to

Wrap(
  runAlignment: WrapAlignment.end
)

Implementation

NikuWrap runJustifyEnd() {
  _runAlignment = WrapAlignment.end;

  return this;
}