EdgeInsets.symmetric constructor

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

Implementation

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