copyWith method

Input$CheckRunOutput copyWith({
  1. List<Input$CheckAnnotationData>? annotations()?,
  2. List<Input$CheckRunOutputImage>? images()?,
  3. String? summary,
  4. String? text()?,
  5. String? title,
})

Implementation

Input$CheckRunOutput copyWith(
        {List<Input$CheckAnnotationData>? Function()? annotations,
        List<Input$CheckRunOutputImage>? Function()? images,
        String? summary,
        String? Function()? text,
        String? title}) =>
    Input$CheckRunOutput(
        annotations: annotations == null ? this.annotations : annotations(),
        images: images == null ? this.images : images(),
        summary: summary == null ? this.summary : summary,
        text: text == null ? this.text : text(),
        title: title == null ? this.title : title);