Declaration.nested constructor
Declaration.nested(
- Interpolation name,
- Iterable<
Statement> children, - FileSpan span, {
- Expression? value,
Creates a declaration with children.
For these declarations, a value is optional.
Implementation
Declaration.nested(this.name, Iterable<Statement> children, this.span,
{this.value})
: super(List.unmodifiable(children));