ResponsiveConstrainedBox constructor

ResponsiveConstrainedBox({
  1. Key? key,
  2. BoxConstraints? xs,
  3. BoxConstraints? sm,
  4. BoxConstraints? md,
  5. BoxConstraints? lg,
  6. BoxConstraints? xl,
  7. required Widget? child,
})

Implementation

ResponsiveConstrainedBox({
  super.key,
  BoxConstraints? xs,
  BoxConstraints? sm,
  BoxConstraints? md,
  BoxConstraints? lg,
  BoxConstraints? xl,
  required this.child,
}) : data = BreakpointsData(xs: xs, sm: sm, md: md, lg: lg, xl: xl);