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