PaddingWrapper constructor

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

Implementation

const PaddingWrapper({
  super.key,
  this.defaultPadding = 16.0, // Default padding value
  this.left,
  this.right,
  this.bottom,
  this.top,
  required this.child,
});