isSupported method

bool isSupported(
  1. Locale locale
)

Return true if the locale is supported.

Implementation

bool isSupported(Locale locale) {
  return true;
  // TODO this does not work, because the CSV file is not loaded yet
  //return _translationsMap.containsKey(locale.toLanguageTag());
}