ps method

Widget ps(
  1. double value
)

Applies padding only to the start (left) side.

Implementation

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