FeatureConfigLoader typedef

FeatureConfigLoader = Future<Map<String, dynamic>> Function(String featureName)

A function that loads the feature configuration which is a map of feature names to feature configurations. Typical this configuration is loaded from a JSON file.

Implementation

typedef FeatureConfigLoader = Future<Map<String, dynamic>> Function(
  String featureName,
);