Margin constructor

Margin({
  1. num? top,
  2. num? bottom,
  3. num? left,
  4. num? right,
})

Implementation

Margin({
  this.top,
  this.bottom,
  this.left,
  this.right,
});