isLocaleLoaded method

bool isLocaleLoaded(
  1. E locale
)

Returns true if the translations of the given locale are loaded.

Implementation

bool isLocaleLoaded(E locale) {
  return translationMap.containsKey(locale);
}