FilePathAnnotation constructor

const FilePathAnnotation({
  1. required String text,
  2. required FilePath filePath,
  3. required int startIndex,
  4. required int endIndex,
})

Creates a FilePathAnnotation.

Implementation

const FilePathAnnotation({
  required this.text,
  required this.filePath,
  required this.startIndex,
  required this.endIndex,
});