hp method

Widget hp(
  1. double padding
)

Horizontal padding

Implementation

Widget hp(double padding) {
  return Padding(
    padding: EdgeInsets.symmetric(horizontal: padding),
    child: this,
  );
}