sizeMax method

NikuRow sizeMax()

Using MainAxisSize.max

Equivalent to

Row(
  mainAxisSize: MainAxisSize.max
)

Implementation

NikuRow sizeMax() {
  _mainAxisSize = MainAxisSize.max;

  return this;
}