has<T> method

bool has<T>()

Check if service exists for current tenant

Implementation

bool has<T>() {
  _ensureTenantSet();
  return _tenantStores[_currentTenantId]!.has<T>();
}