LineChartTooltipStyle constructor

const LineChartTooltipStyle({
  1. double selectedSpotSize = 4,
  2. Color verticalLineColor = Colors.grey,
  3. double verticalLineWidth = 1,
})

Implementation

const LineChartTooltipStyle({
  this.selectedSpotSize = 4,
  this.verticalLineColor = Colors.grey,
  this.verticalLineWidth = 1,
})  : assert(selectedSpotSize >= 0),
      assert(verticalLineWidth >= 0);