AnnotationProperties constructor

const AnnotationProperties({
  1. String? title,
  2. String? file,
  3. int? startLine,
  4. int? endLine,
  5. int? startColumn,
  6. int? endColumn,
})

Implementation

const AnnotationProperties({
  this.title,
  this.file,
  this.startLine,
  this.endLine,
  this.startColumn,
  this.endColumn,
});