Condition constructor

const Condition({
  1. String? pattern,
  2. Anchoring? anchoring,
  3. bool? alternatives,
  4. String? context,
})

Returns a new Condition instance.

Implementation

const Condition({
  this.pattern,
  this.anchoring,
  this.alternatives,
  this.context,
});