EdgeInsets.symmetric constructor
Creates insets with symmetrical vertical and horizontal offsets.
Implementation
const EdgeInsets.symmetric({int vertical = 0, int horizontal = 0})
: left = horizontal,
top = vertical,
right = horizontal,
bottom = vertical;