tp method

Widget tp(
  1. double padding
)

Top padding

Implementation

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