pl static method

EdgeInsets pl(
  1. double left
)

Creates padding for the left side only.

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

Implementation

static EdgeInsets pl(double left) => _pad(left: left);