Context constructor

Context({
  1. int? length,
  2. List<ContextElement>? variables,
  3. String? id,
  4. ContextRef? parent,
})

Implementation

Context({
  this.length,
  this.variables,
  super.id,
  this.parent,
});