vertical static method

EdgeInsetsGeometry vertical(
  1. double spacing, {
  2. bool withResponsive = true,
})

Implementation

static EdgeInsetsGeometry vertical(double spacing,
    {bool withResponsive = true}) {
  return Spacing.only(
      top: spacing, bottom: spacing, withResponsive: withResponsive);
}