ResponsiveLayoutWidget.builder constructor

const ResponsiveLayoutWidget.builder({
  1. Key? key,
  2. RBuilder? mobile,
  3. RBuilder? tablet,
  4. RBuilder? desktop,
  5. ScreenBreakpoints? breakpoints,
})

Implementation

const ResponsiveLayoutWidget.builder({
  Key? key,
  RBuilder? mobile,
  RBuilder? tablet,
  RBuilder? desktop,
  this.breakpoints,
})  : mobile = mobile,
      tablet = tablet,
      desktop = desktop,
      super(key: key);