Responsive constructor

const Responsive({
  1. Key? key,
  2. Widget mobileSmall(
    1. BoxConstraints constraints
    )?,
  3. Widget mobile(
    1. BoxConstraints constraints
    )?,
  4. Widget tabletSmall(
    1. BoxConstraints constraints
    )?,
  5. Widget tablet(
    1. BoxConstraints constraints
    )?,
  6. Widget desktop(
    1. BoxConstraints constraints
    )?,
  7. Widget desktopLarge(
    1. BoxConstraints constraints
    )?,
})

Implementation

const Responsive(
    {super.key,
    this.mobileSmall,
    this.mobile,
    this.tabletSmall,
    this.tablet,
    this.desktop,
    this.desktopLarge});