copyWith method
Input$CheckRunOutput
copyWith({
- List<
Input$CheckAnnotationData> ? annotations()?, - List<
Input$CheckRunOutputImage> ? images()?, - String? summary,
- String? text()?,
- 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);