tryToDateAutoFormat method
Attempts toDateAutoFormat while swallowing parsing errors.
Implementation
DateTime? tryToDateAutoFormat({
String? locale,
bool useCurrentLocale = false,
bool utc = false,
}) {
try {
return toDateAutoFormat(
locale: locale,
useCurrentLocale: useCurrentLocale,
utc: utc,
);
} catch (_) {
return null;
}
}