padBottom method

Padding padBottom({
  1. double? bottom,
})

Implementation

Padding padBottom({double? bottom}) => Padding(
      padding: EdgeInsets.only(bottom: bottom ?? kDefault20VerticalSpace),
      child: this,
    );