runJustifyCenter method

NikuWrap runJustifyCenter()

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

Using WrapAlignment.center

Equivalent to

Wrap(
  runAlignment: WrapAlignment.center
)

Implementation

NikuWrap runJustifyCenter() {
  _runAlignment = WrapAlignment.center;

  return this;
}