pr static method

EdgeInsets pr(
  1. double right
)

Creates padding for the right side only.

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

Implementation

static EdgeInsets pr(double right) => _pad(right: right);