pl method

Widget pl(
  1. double v
)

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

Implementation

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