EdgeInsets.only constructor

const EdgeInsets.only({
  1. int top = 0,
  2. int right = 0,
  3. int bottom = 0,
  4. int left = 0,
})

Creates insets with explicitly specified values for each side.

Implementation

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