copyWith method

Input$AddProjectNextItemInput copyWith({
  1. String? clientMutationId()?,
  2. String? contentId,
  3. String? projectId,
})

Implementation

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