Responsive constructor

const Responsive({
  1. Key? key,
  2. Widget? xxs,
  3. Widget? xs,
  4. Widget? sm,
  5. Widget? md,
  6. Widget? lg,
  7. Widget? xl,
  8. Widget? xxl,
})

Creates a Responsive widget.

Implementation

const Responsive({
  super.key,
  this.xxs,
  this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
  this.xxl,
});