FeatureConfig constructor

FeatureConfig({
  1. required String featureName,
  2. required String appsName,
  3. required String featurePath,
  4. required String appsPath,
  5. required bool isInApps,
})

Creates a new FeatureConfig instance.

All parameters are required to ensure complete configuration.

Implementation

FeatureConfig({
  required this.featureName,
  required this.appsName,
  required this.featurePath,
  required this.appsPath,
  required this.isInApps,
});