ASTEmptyLine constructor

ASTEmptyLine({
  1. HTSource? source,
  2. int line = 0,
  3. int column = 0,
  4. int offset = 0,
  5. int length = 0,
})

Implementation

ASTEmptyLine({
  super.source,
  super.line = 0,
  super.column = 0,
  super.offset = 0,
  super.length = 0,
}) : super(
        Semantic.emptyLine,
        content: '\n',
        isDocumentation: false,
      );