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