all static method

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

Implementation

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