ResponsiveWidget constructor
Constructs a ResponsiveWidget.
s is required and represents the widget to display on small screens.
m, l, xl are optional and represent widgets to display on medium, large, and extra-large screens respectively.
Implementation
const ResponsiveWidget({
required this.s,
this.m,
this.l,
this.xl,
super.key,
});