static bool isValidDate(String format, String input) { try { DateFormat(format).parseStrict(input); return true; } catch (_) { return false; } }