ResponsiveWidget constructor

const ResponsiveWidget({
  1. Key? key,
  2. Widget? mobile,
  3. Widget? tablet,
  4. Widget? web,
  5. Widget? desktop,
})

Implementation

const ResponsiveWidget({
  super.key,
  this.mobile,
  this.tablet,
  this.web,
  this.desktop,
});