copyWith method
Implementation
Input$UpdateProjectCardInput copyWith(
{String? Function()? clientMutationId,
bool? Function()? isArchived,
String? Function()? note,
String? projectCardId}) =>
Input$UpdateProjectCardInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
isArchived: isArchived == null ? this.isArchived : isArchived(),
note: note == null ? this.note : note(),
projectCardId:
projectCardId == null ? this.projectCardId : projectCardId);