translationsLoading property
Internal: Keeps track of loading translations to prevent multiple requests. This lock is sufficient because Dart's async loop is single-threaded.
Implementation
final Set<E> translationsLoading = {};
Internal: Keeps track of loading translations to prevent multiple requests. This lock is sufficient because Dart's async loop is single-threaded.
final Set<E> translationsLoading = {};