pl method

Padding pl(
  1. double value, {
  2. Key? key,
})

Creates EdgeInsets.only with Provided Value for Left Side

Implementation

Padding pl(double value, {Key? key}) {
  return Padding(
    key: key,
    child: this,
    padding: EdgeInsets.only(left: value),
  );
}