BottomPadding constructor

const BottomPadding({
  1. Key? key,
  2. double left = 20,
  3. double top = 10,
  4. double right = 20,
  5. double bottom = 10,
  6. required Widget child,
  7. Color? color,
})

Implementation

const BottomPadding(
    {super.key,
    this.left = 20,
    this.top = 10,
    this.right = 20,
    this.bottom = 10,
    required this.child,
    this.color});