width property

String width

Implementation

String get width => _width;
void width=(String value)

Implementation

set width(String value) {
  if (_width != value) {
    _width = value;
    markNeedsLayout();
  }
}