mainAxisSize property

MainAxisSize get mainAxisSize

How much space should be occupied in the main axis

Implementation

MainAxisSize get mainAxisSize => _mainAxisSize;
set mainAxisSize (MainAxisSize value)

Implementation

set mainAxisSize(MainAxisSize value) {
  if (_mainAxisSize == value) return;
  _mainAxisSize = value;
}