Feature constructor

Feature({
  1. String title = "",
  2. Color color = Colors.black,
  3. required List<double> data,
})

Implementation

Feature({
  this.title = "",
  this.color = Colors.black,
  required this.data,
});