visitSupportsDirective method

  1. @override
void visitSupportsDirective(
  1. SupportsDirective node
)
override

Implementation

@override
void visitSupportsDirective(SupportsDirective node) {
  emit('$_newLine@supports ');
  node.condition!.visit(this);
  emit('$_sp{');
  for (var rule in node.groupRuleBody) {
    rule.visit(this);
  }
  emit('$_newLine}');
}