BaseResponsivePreffered constructor

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

Implementation

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