copyWith method
Implementation
Input$DeleteProjectCardInput copyWith(
{String? cardId, String? Function()? clientMutationId}) =>
Input$DeleteProjectCardInput(
cardId: cardId == null ? this.cardId : cardId,
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId());