EdgeInsets.symmetric constructor

const EdgeInsets.symmetric({
  1. int vertical = 0,
  2. int horizontal = 0,
})

Implementation

const EdgeInsets.symmetric({int vertical = 0, int horizontal = 0})
    : top = vertical,
      bottom = vertical,
      left = horizontal,
      right = horizontal;