ResponsivePadding constructor

const ResponsivePadding({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsets? mobile,
  4. EdgeInsets? tablet,
  5. EdgeInsets? desktop,
})

Implementation

const ResponsivePadding({
  super.key,
  required this.child,
  this.mobile,
  this.tablet,
  this.desktop,
});