width property

  1. @override
num? width
override

Property getter and setter for width:

Implementation

@override
num? get width => _width;
  1. @override
void width=(num? width)
override

Implementation

@override
set width(num? width) {
  this._width = width;
  wrapped['width'] = jsonLiteral(width);
}