pt method

Widget pt(
  1. double value
)

Implementation

Widget pt(double value) {
  return Padding(
    padding: EdgeInsets.only(top: value),
    child: this,
  );
}