ResponsivePadding constructor

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

Implementation

ResponsivePadding({
  super.key,
  EdgeInsets? xs,
  EdgeInsets? sm,
  EdgeInsets? md,
  EdgeInsets? lg,
  EdgeInsets? xl,
  required this.child,
}) : data = BreakpointsData(xs: xs, sm: sm, md: md, lg: lg, xl: xl);