pt static method

EdgeInsets pt(
  1. double top
)

Creates padding for the top side only.

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

Implementation

static EdgeInsets pt(double top) => _pad(top: top);