EdgeInsets.symmetric constructor

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

Implementation

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