width property

String get width
inherited

Implementation

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

Implementation

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