copyWith method

Input$CheckRunOutputImage copyWith({
  1. String? alt,
  2. String? caption()?,
  3. String? imageUrl,
})

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);