EdgeInsets.only constructor

const EdgeInsets.only({
  1. Object? top,
  2. Object? right,
  3. Object? bottom,
  4. Object? left,
})

Creates edge values for selected sides.

Implementation

const EdgeInsets.only({this.top, this.right, this.bottom, this.left});