hv static method

EdgeInsets hv({
  1. double? horizontal,
  2. double? vertical,
})

Implementation

static EdgeInsets hv({double? horizontal, double? vertical}) {
  return EdgeInsets.symmetric(
    horizontal: horizontal == null ? 0.0 : horizontal.r,
    vertical: vertical == null ? 0.0 : vertical.r,
  );
}