WindowFeatures constructor

WindowFeatures({
  1. bool? allowsResizing,
  2. double? height,
  3. bool? menuBarVisibility,
  4. bool? statusBarVisibility,
  5. bool? toolbarsVisibility,
  6. double? width,
  7. double? x,
  8. double? y,
})

Implementation

WindowFeatures({
  this.allowsResizing,
  this.height,
  this.menuBarVisibility,
  this.statusBarVisibility,
  this.toolbarsVisibility,
  this.width,
  this.x,
  this.y,
});