paddingBottomRight method

Padding paddingBottomRight(
  1. double bottom,
  2. double right
)

Implementation

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