py method

Widget py(
  1. double v
)

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

Implementation

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