noBottom static method

EdgeInsetsGeometry noBottom(
  1. double spacing
)

it's do padding from all deration except Bottom

Implementation

static EdgeInsetsGeometry noBottom(double spacing) {
  return FuSpacing.only(top: spacing, left: spacing, right: spacing);
}