width property

String width

Implementation

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

Implementation

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