horizontal static method

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

Implementation

static EdgeInsetsGeometry horizontal(double spacing,
    {bool withResponsive = true}) {
  return Spacing.only(
      left: spacing, right: spacing, withResponsive: withResponsive);
}