pt method

Widget pt(
  1. double v
)

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

Implementation

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