Context constructor Null safety
- {int? length,
- List<
ContextElement> ? variables, - required String id,
- ContextRef? parent}
Implementation
Context({
this.length,
this.variables,
required String id,
this.parent,
}) : super(
id: id,
);