all static method

EdgeInsets all(
  1. double spacing
)

Implementation

static EdgeInsets all(double spacing) {
  return FlexSpacing.only(
    bottom: spacing,
    top: spacing,
    right: spacing,
    left: spacing,
  );
}