monthSuggestions top-level property
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();