width property

int width

Implementation

int get width => int.tryParse(getAttribute('width') ?? '') ?? 0;
void width=(int value)

Implementation

set width(int value) {
  if (value < 0) value = 0;
  internalSetAttribute('width', value.toString());
}