SymbolNode constructor

SymbolNode({
  1. required String id,
  2. required String filePath,
  3. required String symbolName,
  4. String? containerName,
  5. required String symbolType,
  6. bool isTest = false,
})

Implementation

SymbolNode({
  required this.id,
  required this.filePath,
  required this.symbolName,
  this.containerName,
  required this.symbolType,
  this.isTest = false,
});