PaddingWrapper constructor

const PaddingWrapper({
  1. Key? key,
  2. required Widget child,
  3. double? width,
  4. EdgeInsets? padding,
  5. Color? color,
  6. BoxDecoration? decoration,
  7. double? height,
  8. Alignment? alignment,
  9. EdgeInsets? margin,
  10. Clip? clip,
})

Implementation

const PaddingWrapper({
  Key? key,
  required this.child,
  this.width,
  this.padding,
  this.color,
  this.decoration,
  this.height,
  this.alignment,
  this.margin,
  this.clip,
}) : super(key: key);