copyWith method
Implementation
Input$RerequestCheckSuiteInput copyWith(
{String? checkSuiteId,
String? Function()? clientMutationId,
String? repositoryId}) =>
Input$RerequestCheckSuiteInput(
checkSuiteId: checkSuiteId == null ? this.checkSuiteId : checkSuiteId,
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
repositoryId:
repositoryId == null ? this.repositoryId : repositoryId);