copyWith method
Implementation
Input$CheckRunOutputImage copyWith(
{String? alt, String? Function()? caption, String? imageUrl}) =>
Input$CheckRunOutputImage(
alt: alt == null ? this.alt : alt,
caption: caption == null ? this.caption : caption(),
imageUrl: imageUrl == null ? this.imageUrl : imageUrl);