CheckRunAnnotation constructor
const
CheckRunAnnotation({})
Implementation
const CheckRunAnnotation({
required this.annotationLevel,
required this.endLine,
required this.message,
required this.path,
required this.startLine,
required this.title,
this.startColumn,
this.endColumn,
this.rawDetails,
}) : assert(
startColumn == null || startLine == endLine,
'Annotations only support start_column and end_column on the same line.',
),
assert(
endColumn == null || startLine == endLine,
'Annotations only support start_column and end_column on the same line.',
),
assert(title.length <= 255);