SparklineSlot constructor

const SparklineSlot({
  1. Key? key,
  2. required List<double> values,
  3. double height = 28,
  4. Color? color,
})

Implementation

const SparklineSlot({
  super.key,
  required this.values,
  this.height = 28,
  this.color,
});