copyWith method

Input$DeleteProjectCardInput copyWith({
  1. String? cardId,
  2. String? clientMutationId()?,
})

Implementation

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