isRegistered static method

bool isRegistered(
  1. String providerId
)

Check if a provider is registered

providerId - ID of the provider to check

Implementation

static bool isRegistered(String providerId) {
  _ensureInitialized();
  return _factories.containsKey(providerId);
}