width property

String get width

Implementation

String get width => _getAttribute('width') ?? '';
set width (String value)

Implementation

set width(String value) {
  _setAttribute('width', value);
}