ScreenPadding constructor

const ScreenPadding({
  1. Key? key,
  2. EdgeInsetsGeometry? padding,
  3. required Widget child,
})

default: horizontal 18.w

Implementation

const ScreenPadding({
  super.key,
  this.padding,
  required this.child,
});