DateTime? tryParseHttpDate(String input) { try { return HttpDate.parse(input); } catch (ignored) { // Ignore all exceptions. return null; } }