ScreenTypeLayout.builder constructor

ScreenTypeLayout.builder({
  1. Key? key,
  2. ScreenBreakpoints? breakpoints,
  3. WidgetBuilder? watch,
  4. WidgetBuilder? mobile,
  5. WidgetBuilder? tablet,
  6. WidgetBuilder? desktop,
})

Implementation

ScreenTypeLayout.builder({
  Key? key,
  this.breakpoints,
  this.watch,
  this.mobile,
  this.tablet,
  this.desktop,
}) : super(key: key) {
  _checkIfMobileOrDesktopIsSupplied();
}