hv static method

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

Implementation

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