wrap property

bool get wrap
inherited

Implementation

bool get wrap => _warp;
set wrap (bool _newVal)
inherited

Implementation

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