enabledProviders function

List<ProviderSpec> enabledProviders()

The build-enabled subset of the catalog (insertion order preserved). Without FA_PROVIDERS this is the whole table; visible: false entries are excluded regardless of the filter.

Implementation

List<ProviderSpec> enabledProviders() => [
  for (final spec in providerCatalog.values)
    if (spec.visible && providerEnabledInBuild(spec.name)) spec,
];