pnl static method

EdgeInsets pnl(
  1. double value
)

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);