intialize static method

dynamic intialize(
  1. FeatureConfigLoader loader
)

Initializes the FeatureRegistry with the provided loader function which is used to load the feature configuration.

Implementation

static intialize(FeatureConfigLoader loader) {
  _instance ??= FeatureRegistry._(loader);
}