copyWith method
Implementation
Input$AddProjectCardInput copyWith(
{String? Function()? clientMutationId,
String? Function()? contentId,
String? Function()? note,
String? projectColumnId}) =>
Input$AddProjectCardInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
contentId: contentId == null ? this.contentId : contentId(),
note: note == null ? this.note : note(),
projectColumnId:
projectColumnId == null ? this.projectColumnId : projectColumnId);