TreeSitterQueryCapture constructor

const TreeSitterQueryCapture({
  1. required TreeSitterNode node,
  2. required String name,
  3. int index = 0,
  4. int patternIndex = 0,
  5. int priority = 0,
  6. Map<String, String?> setProperties = const {},
  7. int order = 0,
})

Implementation

const TreeSitterQueryCapture({
  required this.node,
  required this.name,
  this.index = 0,
  this.patternIndex = 0,
  this.priority = 0,
  this.setProperties = const {},
  this.order = 0,
});