all static method

EdgeInsets all(
  1. double spacing
)

Implementation

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