AdaptiveBuilder.custom constructor

const AdaptiveBuilder.custom({
  1. Key? key,
  2. required AdaptiveWidgetBuilder defaultBuilder,
  3. AdaptiveLayoutDelegate? androidDelegate,
  4. AdaptiveLayoutDelegate? fuchsiaDelegate,
  5. AdaptiveLayoutDelegate? iosDelegate,
  6. AdaptiveLayoutDelegate? windowsDelegate,
  7. AdaptiveLayoutDelegate? macosDelegate,
  8. AdaptiveLayoutDelegate? linuxDelegate,
  9. AdaptiveLayoutDelegate? webDelegate,
  10. AdaptiveLayoutDelegate? allPlatformsDelegate,
  11. BreakpointData? breakpointData,
})

Implementation

const AdaptiveBuilder.custom({
  Key? key,
  required this.defaultBuilder,
  this.androidDelegate,
  this.fuchsiaDelegate,
  this.iosDelegate,
  this.windowsDelegate,
  this.macosDelegate,
  this.linuxDelegate,
  this.webDelegate,
  this.allPlatformsDelegate,
  this.breakpointData,
}) : super(key: key);