periods top-level property

Map<String, Period> periods
final

Implementation

final Map<String, Period> periods = {
  '7d': Period('Last Week', 7, 1),
  '14d': Period('Last 2 Weeks', 14, 1),
  '1mo': Period('Last Month', 30, 2),
  '2mo': Period('Last 2 Months', 60, 3),
  '6mo': Period('Last 6 Months', 180, 10),
  '1y': Period('Last Year', 365, 30)
};