PlatformWidget constructor

const PlatformWidget({
  1. Key? key,
  2. PlatformBuilder<Widget?>? desktop,
  3. PlatformBuilder<Widget?>? mobile,
  4. PlatformBuilder<Widget?>? web,
})

Builds a PlatformWidget.

Implementation

const PlatformWidget({
  super.key,
  this.desktop,
  this.mobile,
  this.web,
});