symmetric static method

EdgeInsets symmetric({
  1. double horizontal = 0.0,
  2. double vertical = 0.0,
})

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),
    );