WindowWidget.controlled constructor

const WindowWidget.controlled({
  1. Key? key,
  2. Widget? title,
  3. Widget? actions,
  4. Widget? content,
  5. required WindowController controller,
})

Implementation

const WindowWidget.controlled({
  super.key,
  this.title,
  this.actions,
  this.content,
  required WindowController this.controller,
})  : bounds = null,
      maximized = null,
      minimized = null,
      resizable = null,
      draggable = null,
      closable = null,
      maximizable = null,
      minimizable = null,
      enableSnapping = null,
      constraints = null;