pb static method

EdgeInsets pb(
  1. double bottom
)

Creates padding for the bottom side only.

bottom: The bottom padding value. Returns an EdgeInsets object with bottom padding.

Implementation

static EdgeInsets pb(double bottom) => _pad(bottom: bottom);