PlexSparkline constructor

const PlexSparkline({
  1. Key? key,
  2. required List<double> data,
  3. double width = 80,
  4. double height = 32,
  5. Color? color,
  6. bool showArea = false,
})

Implementation

const PlexSparkline({
  super.key,
  required this.data,
  this.width = 80,
  this.height = 32,
  this.color,
  this.showArea = false,
});