Features constructor

const Features({
  1. Key? key,
  2. required Widget child,
  3. List<String> flags = const <String>[],
  4. String sharedPreferencesKey = 'feature_flags',
})

Implementation

const Features({
  Key? key,
  required this.child,
  this.flags = const <String>[],
  this.sharedPreferencesKey = 'feature_flags',
}) : super(key: key);