AbstractTag constructor

AbstractTag(
  1. List<ASTNode> content,
  2. List<Filter> filters, [
  3. List<ASTNode> body = const []
])

Constructs a new BaseTag with the given content, filters, and optional body.

Implementation

AbstractTag(this.content, this.filters, [this.body = const []]);