Condition constructor

Condition({
  1. String? stringValue,
  2. double? numericValue,
  3. required Condition_Operator operation,
})

Implementation

Condition({this.stringValue, this.numericValue, required this.operation})
  : super(fullyQualifiedName);