AnnotationIssue constructor

const AnnotationIssue({
  1. required String filePath,
  2. required int line,
  3. required String message,
  4. int? column,
})

Creates an AnnotationIssue.

Implementation

const AnnotationIssue({
  required this.filePath,
  required this.line,
  required this.message,
  this.column,
});