paddingBottomLeft method

Padding paddingBottomLeft(
  1. double bottom,
  2. double left
)

Implementation

Padding paddingBottomLeft(double bottom, double left) => Padding(
      padding: EdgeInsets.only(bottom: bottom, left: left),
      child: this,
    );