AppCmsPadding constructor

const AppCmsPadding({
  1. Key? key,
  2. required double left,
  3. required double right,
  4. required double top,
  5. required double bottom,
  6. required Widget child,
})

Implementation

const AppCmsPadding({
  super.key,
  required this.left,
  required this.right,
  required this.top,
  required this.bottom,
  required this.child,
});