localizedDateTime function
Formats a localized date and time for the active locale on BloomI18n.instance.
final str = localizedDateTime(DateTime.now());
See also:
- formatDateTime, standalone date-time formatting function.
Implementation
String localizedDateTime(DateTime dateTime, [String? locale, String? pattern]) =>
formatDateTime(dateTime, locale: locale, pattern: pattern);