resizable property

bool resizable

Implementation

bool get resizable => _resizable;
void resizable=(bool value)

Implementation

set resizable(bool value) {
  if (value == _resizable) return;

  _resizable = value;
}