symmetric static method

EdgeInsetsGeometry symmetric({
  1. double vertical = 0,
  2. double horizontal = 0,
  3. bool withResponsive = true,
})

Implementation

static EdgeInsetsGeometry symmetric(
    {double vertical = 0,
    double horizontal = 0,
    bool withResponsive = true}) {
  return Spacing.only(
      top: vertical,
      right: horizontal,
      left: horizontal,
      bottom: vertical,
      withResponsive: withResponsive);
}