ChartMargin constructor

const ChartMargin({
  1. double top = 20,
  2. double right = 20,
  3. double bottom = 40,
  4. double left = 50,
})

Implementation

const ChartMargin({
  this.top = 20,
  this.right = 20,
  this.bottom = 40,
  this.left = 50,
});