width property

int? width

The width of the tab in pixels.

Implementation

int? get width => _wrapped.width;
void width=(int? v)

Implementation

set width(int? v) {
  _wrapped.width = v;
}