width property

double width

Implementation

double get width => _width!;
void width=(double w)

Implementation

set width(double w) {
  if (w != _width) {
    _width = w;
    invalidateDrawable();
  }
}