symmetric static method
Implementation
static EdgeInsetsGeometry symmetric(
{double vertical = 0,
double horizontal = 0,
bool withResponsive = true}) {
return Spacing.only(
top: vertical,
right: horizontal,
left: horizontal,
bottom: vertical,
withResponsive: withResponsive);
}