PanelMargin constructor

const PanelMargin({
  1. double? left,
  2. double? right,
  3. double? top,
  4. double? bottom,
})

Implementation

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