py method

Widget py(
  1. double value
)

Applies vertical padding (top and bottom).

Implementation

Widget py(double value) => Padding(
  padding: EdgeInsets.symmetric(vertical: value),
  child: this,
);