SparklineChart constructor

const SparklineChart({
  1. Key? key,
  2. required ChartConfig config,
  3. ChartTheme? theme,
  4. bool showEndDot = true,
  5. bool fill = true,
})

Implementation

const SparklineChart({
  super.key,
  required this.config,
  this.theme,
  this.showEndDot = true,
  this.fill = true,
});