pb method

Widget pb(
  1. double value
)

Applies padding only to the bottom side.

Implementation

Widget pb(double value) => Padding(
  padding: EdgeInsets.only(bottom: value),
  child: this,
);