BaseResponsive constructor

const BaseResponsive({
  1. Key? key,
  2. Widget common = const SizedBox(),
  3. Widget? mobile,
  4. Widget? tablet,
  5. Widget? laptop,
  6. Widget? desktop,
})

Implementation

const BaseResponsive({
  super.key,
  this.common = const SizedBox(),
  this.mobile,
  this.tablet,
  this.laptop,
  this.desktop,
});