copyWith method

Input$AddProjectCardInput copyWith({
  1. String? clientMutationId()?,
  2. String? contentId()?,
  3. String? note()?,
  4. String? projectColumnId,
})

Implementation

Input$AddProjectCardInput copyWith(
        {String? Function()? clientMutationId,
        String? Function()? contentId,
        String? Function()? note,
        String? projectColumnId}) =>
    Input$AddProjectCardInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        contentId: contentId == null ? this.contentId : contentId(),
        note: note == null ? this.note : note(),
        projectColumnId:
            projectColumnId == null ? this.projectColumnId : projectColumnId);