all static method

EdgeInsets all(
  1. double all
)

Creates padding with the same value for all sides.

all: The padding value to be applied to all sides. Returns an EdgeInsets object with uniform padding.

Implementation

static EdgeInsets all(double all) => _pad(all: all);