pr method

Widget pr(
  1. double v
)

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

Implementation

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