localized static method

String localized(
  1. DateTime date,
  2. String locale, {
  3. String pattern = 'yMMMMd',
})

Format localized (requires Intl locale setup).

Implementation

static String localized(
  DateTime date,
  String locale, {
  String pattern = 'yMMMMd',
}) {
  return DateFormat(pattern, locale).format(date);
}