copyWith method

Input$MoveProjectCardInput copyWith({
  1. String? afterCardId()?,
  2. String? cardId,
  3. String? clientMutationId()?,
  4. String? columnId,
})

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);