AtRule constructor
AtRule(
- Interpolation name,
- FileSpan span, {
- Interpolation? value,
- Iterable<
Statement> ? children,
Implementation
AtRule(this.name, this.span, {this.value, Iterable<Statement>? children})
: super(children == null ? null : List.unmodifiable(children));