WindowOptions constructor

const WindowOptions({
  1. Size? size,
  2. bool? center,
  3. Size? minimumSize,
  4. Size? maximumSize,
  5. bool? alwaysOnTop,
  6. bool? fullScreen,
  7. Color? backgroundColor,
  8. bool? skipTaskbar,
  9. String? title,
  10. TitleBarStyle? titleBarStyle,
  11. bool? windowButtonVisibility,
})

Implementation

const WindowOptions({
  this.size,
  this.center,
  this.minimumSize,
  this.maximumSize,
  this.alwaysOnTop,
  this.fullScreen,
  this.backgroundColor,
  this.skipTaskbar,
  this.title,
  this.titleBarStyle,
  this.windowButtonVisibility,
});