paddingBottom method

Padding paddingBottom(
  1. double value
)

Wraps this widget with padding only on the bottom.

Implementation

Padding paddingBottom(double value) {
  return Padding(padding: EdgeInsets.only(bottom: value), child: this);
}