pnl static method
Creates padding for all sides except the left.
value
: The padding value to be applied.
Returns an EdgeInsets object with padding on top, bottom, and right.
Implementation
static EdgeInsets pnl(double value) =>
_pad(top: value, bottom: value, right: value);