resizable property

bool get resizable

Whether the window can be resized by dragging edges/corners.

Implementation

bool get resizable => value.resizable;
set resizable (bool value)

Sets whether the window can be resized.

Implementation

set resizable(bool value) {
  if (value == resizable) return;
  this.value = this.value.copyWith(resizable: () => value);
}