EdgeInsets.symmetric constructor

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

Implementation

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