Modification constructor

Modification(
  1. String key,
  2. String campaignId,
  3. String variationGroupId,
  4. String variationId,
  5. bool isReference,
  6. String campaignType,
  7. String? slug,
  8. dynamic pValue,
)

Implementation

Modification(
    this.key,
    this.campaignId,
    this.variationGroupId,
    this.variationId,
    this.isReference,
    this.campaignType,
    this.slug,
    dynamic pValue) {
  value = pValue;
}