EdgeInsets.only constructor

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

Implementation

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