width property

  1. @override
num? get width
override

The width of the pane.

Can be set as 0 to signify full width.

Implementation

@override
num? get width => _width;
set width (num? width)

Implementation

set width(num? width) {
  if (_width != width) {
    _width = width;
    _asyncScheduler.scheduleUpdate();
  }
}