builder static method

Widget builder({
  1. required Widget child,
  2. required List<Breakpoint> breakpoints,
  3. List<Breakpoint>? breakpointsLandscape,
  4. List<ResponsiveTargetPlatform>? landscapePlatforms,
  5. bool useShortestSide = false,
  6. bool debugLog = false,
})

Implementation

static Widget builder({
  required Widget child,
  required List<Breakpoint> breakpoints,
  List<Breakpoint>? breakpointsLandscape,
  List<ResponsiveTargetPlatform>? landscapePlatforms,
  bool useShortestSide = false,
  bool debugLog = false,
}) {
  return ResponsiveBreakpoints(
    breakpoints: breakpoints,
    breakpointsLandscape: breakpointsLandscape,
    landscapePlatforms: landscapePlatforms,
    useShortestSide: useShortestSide,
    debugLog: debugLog,
    child: child,
  );
}