18 lines
423 B
Dart
18 lines
423 B
Dart
|
// import 'package:charts_flutter/flutter.dart' as charts;
|
||
|
import 'package:community_charts_common/community_charts_common.dart' as charts;
|
||
|
|
||
|
class WeeklyActivitySeries {
|
||
|
String type;
|
||
|
String day;
|
||
|
int count;
|
||
|
int target;
|
||
|
final charts.Color barColor;
|
||
|
|
||
|
WeeklyActivitySeries(
|
||
|
{required this.day,
|
||
|
required this.type,
|
||
|
required this.count,
|
||
|
required this.target,
|
||
|
required this.barColor});
|
||
|
}
|