pnt static method

EdgeInsets pnt(
  1. double value
)

Creates padding for all sides except the top.

value: The padding value to be applied. Returns an EdgeInsets object with padding on left, bottom, and right.

Implementation

static EdgeInsets pnt(double value) =>
    _pad(left: value, bottom: value, right: value);