pl method
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);
Adds padding on the left only.
Wraps this widget in a Padding with EdgeInsets.only.
Text('Hello').pl(TwSpacing.s4)
Widget pl(double value) =>
Padding(padding: EdgeInsets.only(left: value), child: this);