CodeLocation constructor

const CodeLocation({
  1. required String filePath,
  2. required int line,
  3. required int column,
  4. String? lineContent,
  5. String? surroundingContext,
  6. String? resolvedType,
})

Implementation

const CodeLocation({
  required this.filePath,
  required this.line,
  required this.column,
  this.lineContent,
  this.surroundingContext,
  this.resolvedType,
});