SimpleDelimiter constructor

SimpleDelimiter({
  1. required Text node,
  2. required int char,
  3. required int length,
  4. required bool canOpen,
  5. required bool canClose,
  6. required TagSyntax syntax,
  7. required int endPos,
})

Implementation

SimpleDelimiter(
    {required this.node,
    required this.char,
    required this.length,
    required this.canOpen,
    required this.canClose,
    required this.syntax,
    required this.endPos})
    : isActive = true;