Attempts to parse this string into a DateTime, returning null on failure.
null
DateTime? tryToDateTime() { try { return toDateTime(); } catch (_) { return null; } }