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