width property

double? get width

Overlay panel width. null keeps the widget default (280).

Implementation

double? get width => _width;
set width (double? value)

Implementation

set width(double? value) {
  if (_width == value) return;
  _width = value;
  notifyListeners();
}