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