Dataset constructor

Dataset({
  1. String? legend,
  2. PdfColor? color,
  3. PdfColor? borderColor,
  4. double borderWidth = .5,
})

Implementation

Dataset({
  this.legend,
  this.color,
  this.borderColor,
  this.borderWidth = .5,
});