9 lines
122 B
Dart
9 lines
122 B
Dart
class ChartItem {
|
|
String label;
|
|
double value;
|
|
|
|
ChartItem({
|
|
required this.label,
|
|
required this.value,
|
|
});
|
|
} |