copyWith method
Implementation
Input$CheckRunAction copyWith(
{String? description, String? identifier, String? label}) =>
Input$CheckRunAction(
description: description == null ? this.description : description,
identifier: identifier == null ? this.identifier : identifier,
label: label == null ? this.label : label);