copyWith method

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

Implementation

Input$CreateCheckSuiteInput copyWith(
        {String? Function()? clientMutationId,
        String? headSha,
        String? repositoryId}) =>
    Input$CreateCheckSuiteInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        headSha: headSha == null ? this.headSha : headSha,
        repositoryId:
            repositoryId == null ? this.repositoryId : repositoryId);