LegendTapArgs constructor

LegendTapArgs([
  1. dynamic series,
  2. int? seriesIndex,
  3. int? pointIndex
])

Creating an argument constructor of LegendTapArgs class.

Implementation

LegendTapArgs([
  this.series,
  this.seriesIndex,
  this.pointIndex,
]);