pt method

Widget pt(
  1. double value
)

Applies padding only to the top side.

Implementation

Widget pt(double value) => Padding(
  padding: EdgeInsets.only(top: value),
  child: this,
);