pb method

Widget pb(
  1. double v
)

Wraps the widget in a Padding with the specified bottom v padding.

Implementation

Widget pb(double v) => Padding(padding: v.pb, child: this);