FeatureRolloutStrategyAttribute constructor

FeatureRolloutStrategyAttribute({
  1. required RolloutStrategyAttributeConditional conditional,
  2. required String fieldName,
  3. List? values,
  4. required RolloutStrategyFieldType type,
})

Implementation

FeatureRolloutStrategyAttribute(
    {required this.conditional,
    required this.fieldName,
    List<dynamic>? values,
    required this.type})
    : this.values = values ?? [];