identify static method

Currency? identify(
  1. Locale locale
)

Implementation

static Currency? identify(Locale locale) {
  final format = NumberFormat.simpleCurrency(locale: locale.toString());
  return find(format.currencyName);
}