pl method

Widget pl(
  1. double value
)

Adds padding on the left only.

Wraps this widget in a Padding with EdgeInsets.only.

Text('Hello').pl(TwSpacing.s4)

Implementation

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