ChartTooltip constructor

const ChartTooltip({
  1. Key? key,
  2. required ChartTheme theme,
  3. required String title,
  4. required String value,
  5. String? subtitle,
  6. Color? color,
})

Implementation

const ChartTooltip({
  super.key,
  required this.theme,
  required this.title,
  required this.value,
  this.subtitle,
  this.color,
});