AdaptiveContainer constructor

const AdaptiveContainer({
  1. Key? key,
  2. required Widget xs,
  3. Widget? sm,
  4. Widget? md,
  5. Widget? lg,
  6. Widget? xl,
  7. Widget? xxl,
  8. List<double>? breakpoints,
})

Implementation

const AdaptiveContainer({
  super.key,
  required this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
  this.xxl,
  this.breakpoints,
});