allSafe static method

EdgeInsets allSafe(
  1. double value
)

Create responsive padding for all sides using safe area

Implementation

static EdgeInsets allSafe(double value) {
  return EdgeInsets.all(value.wSafe);
}