copyWith method
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());