ModulaPadding constructor

const ModulaPadding({
  1. required Widget child,
  2. Key? key,
  3. EdgeInsetsGeometry? padding,
  4. ModulaPaddingSize? size,
  5. double? horizontal,
  6. double? vertical,
  7. double? all,
  8. double? left,
  9. double? top,
  10. double? right,
  11. double? bottom,
})

Implementation

const ModulaPadding({
  required this.child,
  super.key,
  this.padding,
  this.size,
  this.horizontal,
  this.vertical,
  this.all,
  this.left,
  this.top,
  this.right,
  this.bottom,
});