pxy static method
Creates symmetric padding with different horizontal and vertical values.
h
: The horizontal padding value.
v
: The vertical padding value.
Returns an EdgeInsets object with the specified horizontal and vertical padding.
Implementation
static EdgeInsets pxy({required double h, required double v}) =>
_pad(h: h, v: v);