NiceResponsiveSpacing constructor

const NiceResponsiveSpacing({
  1. Key? key,
  2. required double xs,
  3. double? sm,
  4. double? md,
  5. double? lg,
  6. double? xl,
  7. double? xxl,
  8. Axis axis = Axis.vertical,
})

Implementation

const NiceResponsiveSpacing({
  super.key,
  required this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
  this.xxl,
  this.axis = Axis.vertical,
});