copyWith method

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

Implementation

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