pnb static method

EdgeInsets pnb(
  1. double value
)

Creates padding for all sides except the bottom.

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

Implementation

static EdgeInsets pnb(double value) =>
    _pad(top: value, left: value, right: value);