copyWith method

Input$DeleteProjectInput copyWith({
  1. String? clientMutationId()?,
  2. String? projectId,
})

Implementation

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