USparkline constructor

const USparkline({
  1. required List<double> values,
  2. Key? key,
  3. Color? color,
  4. bool fill = true,
  5. double strokeWidth = 2,
  6. double width = 120,
  7. double height = 40,
  8. bool animate = true,
})

Implementation

const USparkline({
  required this.values,
  super.key,
  this.color,
  this.fill = true,
  this.strokeWidth = 2,
  this.width = 120,
  this.height = 40,
  this.animate = true,
});