MappedDeclaration constructor

const MappedDeclaration({
  1. required AstNode node,
  2. required String name,
  3. required int startLine,
  4. required int endLine,
  5. required List<LineRange> intersectingRanges,
})

Implementation

const MappedDeclaration({
  required this.node,
  required this.name,
  required this.startLine,
  required this.endLine,
  required this.intersectingRanges,
});