ResponsiveLayout constructor
const
ResponsiveLayout({})
Creates a ResponsiveLayout widget.
Implementation
const ResponsiveLayout({
super.key,
this.xs,
this.sm,
this.md,
this.lg,
this.xl,
this.child,
}) : assert(
xs != null ||
sm != null ||
md != null ||
lg != null ||
xl != null ||
child != null,
'At least one widget must be provided',
);