pnr static method

EdgeInsets pnr(
  1. double value
)

Creates padding for all sides except the right.

value: The padding value to be applied. Returns an EdgeInsets object with padding on top, bottom, and left.

Implementation

static EdgeInsets pnr(double value) =>
    _pad(top: value, bottom: value, left: value);