symmetric static method
Returns an EdgeInsets with symmetric scaling for horizontal and vertical.
Implementation
static EdgeInsets symmetric({
double horizontal = 0.0,
double vertical = 0.0,
}) =>
EdgeInsets.symmetric(
horizontal: _scale(horizontal),
vertical: _scale(vertical),
);