NiceResponsivePadding constructor

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

Implementation

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