symmetric static method
Returns EdgeInsets with symmetric horizontal and vertical
Implementation
static EdgeInsets symmetric({double? horizontal, double? vertical}) =>
EdgeInsets.symmetric(
horizontal: horizontal ?? 0,
vertical: vertical ?? 0,
);