PlatformWidgetBuilder constructor

const PlatformWidgetBuilder({
  1. Key? key,
  2. Widget? child,
  3. PlatformTargetBuilder? mobile,
  4. PlatformTargetBuilder? desktop,
  5. PlatformTargetBuilder? web,
})

Implementation

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