mainSize method

NikuRow mainSize(
  1. MainAxisSize size
)

Set main axis size

Equivalent to

Row(
  mainAxisSize: input
)

Implementation

NikuRow mainSize(MainAxisSize size) {
  _mainAxisSize = size;

  return this;
}