copyWith method

Input$ConvertProjectCardNoteToIssueInput copyWith({
  1. String? body()?,
  2. String? clientMutationId()?,
  3. String? projectCardId,
  4. String? repositoryId,
  5. String? title()?,
})

Implementation

Input$ConvertProjectCardNoteToIssueInput copyWith(
        {String? Function()? body,
        String? Function()? clientMutationId,
        String? projectCardId,
        String? repositoryId,
        String? Function()? title}) =>
    Input$ConvertProjectCardNoteToIssueInput(
        body: body == null ? this.body : body(),
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        projectCardId:
            projectCardId == null ? this.projectCardId : projectCardId,
        repositoryId: repositoryId == null ? this.repositoryId : repositoryId,
        title: title == null ? this.title : title());