Flag constructor

Flag({
  1. int? id,
  2. required Feature feature,
  3. String? stateValue,
  4. bool? enabled,
  5. int? environment,
  6. int? identity,
  7. int? featureSegment,
})

Implementation

Flag(
    {this.id,
    required this.feature,
    this.stateValue,
    this.enabled,
    this.environment,
    this.identity,
    this.featureSegment});