width property

String width
inherited

Implementation

String get width => nodeRoot.style.width;
  1. @override
void width=(String width)
override

Implementation

@override
set width(String width) {
  numberInput.style.width = width;
  nodeRoot.style.width = width;
}