monthSuggestions top-level property

List<FigSuggestion> monthSuggestions
final

Implementation

final List<FigSuggestion> monthSuggestions = [
  'january',
  'february',
  'march',
  'april',
  'may',
  'june',
  'july',
  'august',
  'september',
  'october',
  'november',
  'december',
]
    .map((month) => FigSuggestion(
          name: month,
          icon: '🗓',
          type: SuggestionType.arg,
        ))
    .toList();