wrap property

bool wrap

Implementation

bool get wrap => _warp;
void wrap=(bool _newVal)

Implementation

set wrap(bool _newVal) {
  _warp = _newVal;
  if (_warp) {
    nodeRoot.style.flexWrap = 'wrap';
  } else {
    nodeRoot.style.flexWrap = 'nowrap';
  }
}