getDateFormat_yMMMMd function

DateFormat getDateFormat_yMMMMd([
  1. IntlLocale? locale
])

Returns DateFormat for locale and skeleton yMMMMd`.

Implementation

// ignore: non_constant_identifier_names
DateFormat getDateFormat_yMMMMd([IntlLocale? locale]) {
  locale ??= IntlLocale.getDefaultIntlLocale();
  return DateFormat.yMMMMd(locale.code);
}