pxy static method

EdgeInsets pxy({
  1. required double h,
  2. required double v,
})

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