onlySafe static method
Create responsive padding with individual values using safe area
Implementation
static EdgeInsets onlySafe({
double? left,
double? top,
double? right,
double? bottom,
}) {
return EdgeInsets.only(
left: left?.wSafe ?? 0,
top: top?.hSafe ?? 0,
right: right?.wSafe ?? 0,
bottom: bottom?.hSafe ?? 0,
);
}