static String getMonth(DateTime dateTime) { String month = dateTime.month.toString(); return (month.length == 1 ? '0' : '') + month; }