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,
}) : this.fromLTRB(horizontal, vertical, horizontal, vertical);