pb method

Widget pb(
  1. double value
)

Implementation

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