static String formatDateMonthAndYear(DateTime? date) { try { return DateFormat.yMMMd().format(date!).toUpperCase(); } catch (e) { return ''; } }