CheckRunOutput constructor

const CheckRunOutput({
  1. required String title,
  2. required String summary,
  3. String? text,
  4. List<CheckRunAnnotation>? annotations,
  5. List<CheckRunImage>? images,
})

Implementation

const CheckRunOutput({
  required this.title,
  required this.summary,
  this.text,
  this.annotations,
  this.images,
});