EdgeInsets constructor

EdgeInsets({
  1. double top = 0.0,
  2. double left = 0.0,
  3. double bottom = 0.0,
  4. double right = 0.0,
})

Implementation

EdgeInsets({
  this.top = 0.0,
  this.left = 0.0,
  this.bottom = 0.0,
  this.right = 0.0,
});