fillContent property

bool fillContent

Implementation

bool get fillContent => _fillContent;
void fillContent=(bool newVal)

Implementation

set fillContent(bool newVal) {
  _fillContent = newVal;
  if (_fillContent) {
    nodeRoot.style.flex = '1';
  } else {
    nodeRoot.style.flex = '';
  }
}