toMMM method

String toMMM(
  1. Locale locale
)

Implementation

String toMMM(Locale locale) =>
    DateFormat.MMM('${locale.languageCode}_${locale.countryCode}')
        .format(toLocal())
        .capitalize()
        .convertArabicNumbers();