SoftUiPadding constructor

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

Implementation

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