Skip to content
Snippets Groups Projects
default_settings.dart 441 B
Newer Older
class DefaultSettings {
  static const List<int> allowedValues = [
    7,
    14,
    21,
    30,
    60,
    90,
  ];
  static const int defaultCountsByDayDaysCount = 21;
  static const int defaultCountsByHourDaysCount = 21;
  static const int defaultDiscoveriesDaysCount = 14;
  static const int defaultStatisticsRecentDaysCount = 21;
  static const int defaultTimelineDaysCount = 14;
  static const int defaultTopArtistsDaysCount = 14;
}