Responsive constructor

const Responsive({
  1. Key? key,
  2. Widget? smallMobile,
  3. Widget? mobile,
  4. Widget? tablet,
  5. Widget? laptop,
  6. Widget? pc,
  7. Widget? tv,
})

Implementation

const Responsive({
  Key? key,
  this.smallMobile,
  this.mobile,
  this.tablet,
  this.laptop,
  this.pc,
  this.tv,
}) : super(key: key);