copyWith method

Input$RerequestCheckSuiteInput copyWith({
  1. String? checkSuiteId,
  2. String? clientMutationId()?,
  3. String? repositoryId,
})

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