FeatureFlag constructor

const FeatureFlag({
  1. required String key,
  2. required dynamic defaultValue,
  3. dynamic overrideValue,
  4. List? options,
  5. bool isForced = false,
  6. bool isRemote = false,
})

Implementation

const FeatureFlag({
  required this.key,
  required this.defaultValue,
  this.overrideValue,
  this.options,
  this.isForced = false,
  this.isRemote = false,
});