months top-level constant
Implementation
const Map<int, String> months = <int, String>{
DateTime.january : 'January',
DateTime.february : 'February',
DateTime.march : 'March',
DateTime.april : 'April',
DateTime.may : 'May',
DateTime.june : 'June',
DateTime.july : 'July',
DateTime.august : 'August',
DateTime.september : 'September',
DateTime.october : 'October',
DateTime.november : 'November',
DateTime.december : 'December',
};