FeatureBuilder
Class that stores necessary data for building a Feature.
This is the class used for storing information about how features are configured before building the app environment. For example, this...
tegral {
install(MyFeature)
install(MyOtherFeature) { /* ... */}
}
Content copied to clipboard
... would lead to two FeatureBuilder instances: one with MyFeature and a no-op configBuilder, one with MyOtherFeature and the provided lambda.