pxy static method

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

get symmetric vertically and horizontally padding

Implementation

static EdgeInsets pxy({required double h, required double v}) =>
    _pad(h: h, v: v);