AdaptiveDispatcher constructor

const AdaptiveDispatcher({
  1. Key? key,
  2. Widget? desktop,
  3. Widget? tablet,
  4. required Widget handset,
  5. Widget? watch,
})

Implementation

const AdaptiveDispatcher({
  Key? key,
  this.desktop,
  this.tablet,
  required this.handset,
  this.watch,
}) : super(key: key);