DesktopWidget constructor

const DesktopWidget({
  1. Key? key,
  2. PlatformBuilder<Widget?>? macOS,
  3. PlatformBuilder<Widget?>? windows,
  4. PlatformBuilder<Widget?>? linux,
})

Builds a DesktopWidget.

Implementation

const DesktopWidget({
  super.key,
  this.macOS,
  this.windows,
  this.linux,
});