symmetricSafe static method
Create symmetric responsive padding using safe area
Implementation
static EdgeInsets symmetricSafe({
double? horizontal,
double? vertical,
}) {
return EdgeInsets.symmetric(
horizontal: horizontal?.wSafe ?? 0,
vertical: vertical?.hSafe ?? 0,
);
}