fromLTRBSafe static method
Create responsive padding from LTRB values using safe area
Implementation
static EdgeInsets fromLTRBSafe(
double left,
double top,
double right,
double bottom,
) {
return EdgeInsets.fromLTRB(
left.wSafe,
top.hSafe,
right.wSafe,
bottom.hSafe,
);
}