AtRule constructor

AtRule(
  1. Interpolation name,
  2. FileSpan span, {
  3. Interpolation? value,
  4. Iterable<Statement>? children,
})

Implementation

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