Suppose I have two dart projects
Project A contains code that uses web component to create bunch of UI widget (similar to https://github.com/kevmoo/widget.dart)
Project B contains my front end code that would reuse the UI widget I created in project A.
If I dont want to publish my project A to pub, is there anyway to link project B to project A without manually copying files from project A into B?
Thanks