dateTimeLocaleFor function
Implementation
DateTimeLocale dateTimeLocaleFor(String code) {
final lc = code.toLowerCase();
if (lc.startsWith('fr')) return const _FrDateTimeLocale();
return const _EnDateTimeLocale();
}
DateTimeLocale dateTimeLocaleFor(String code) {
final lc = code.toLowerCase();
if (lc.startsWith('fr')) return const _FrDateTimeLocale();
return const _EnDateTimeLocale();
}