ConditionListCondition constructor

ConditionListCondition({
  1. String? id,
  2. String? operator_,
  3. String? path,
  4. String? type,
  5. List<String>? value = const [],
})

Returns a new ConditionListCondition instance.

Implementation

ConditionListCondition({
  this.id,
  this.operator_,
  this.path,
  this.type,
  this.value = const [],
});