NiceResponsiveColumn constructor

const NiceResponsiveColumn({
  1. Key? key,
  2. required Widget child,
  3. int? xs,
  4. int? sm,
  5. int? md,
  6. int? lg,
  7. int? xl,
  8. int? xxl,
  9. bool? hiddenXs,
  10. bool? hiddenSm,
  11. bool? hiddenMd,
  12. bool? hiddenLg,
  13. bool? hiddenXl,
  14. bool? hiddenXxl,
})

Implementation

const NiceResponsiveColumn({
  super.key,
  required this.child,
  this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
  this.xxl,
  this.hiddenXs,
  this.hiddenSm,
  this.hiddenMd,
  this.hiddenLg,
  this.hiddenXl,
  this.hiddenXxl,
});