ResponsiveConstraints constructor

const ResponsiveConstraints({
  1. Key? key,
  2. required Widget child,
  3. required BoxConstraints mobileConstraints,
  4. BoxConstraints? tabletConstraints,
  5. BoxConstraints? desktopConstraints,
})

Implementation

const ResponsiveConstraints({
  Key? key,
  required this.child,
  required this.mobileConstraints,
  this.tabletConstraints,
  this.desktopConstraints,
}) : super(key: key);