width property

String get width

Implementation

String get width => nodeRoot.style.width;
set width (String _newWidth)

Implementation

set width(String _newWidth) {
  nodeRoot.style.width = _newWidth;
}