builder static method
Widget
builder({
- required Widget child,
- required List<
Breakpoint> breakpoints, - List<
Breakpoint> ? breakpointsLandscape, - List<
ResponsiveTargetPlatform> ? landscapePlatforms, - bool useShortestSide = false,
- 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,
);
}