EasyPadding constructor

const EasyPadding({
  1. Key? key,
  2. required Widget child,
  3. double? all,
  4. double? horizontal,
  5. double? vertical,
  6. double? top,
  7. double? right,
  8. double? bottom,
  9. double? left,
})

Implementation

const EasyPadding(
    {Key? key,
    required this.child,
    this.all,
    this.horizontal,
    this.vertical,
    this.top,
    this.right,
    this.bottom,
    this.left})
    : super(key: key);