RolloutStrategyAttribute constructor

RolloutStrategyAttribute({
  1. String? id,
  2. RolloutStrategyAttributeConditional? conditional,
  3. String? fieldName,
  4. List? values,
  5. RolloutStrategyFieldType? type,
})

Implementation

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