Say my projects' structures are as follows.
contact_book <---(App)
├── bin
│ └── contact_book.dart
├── contact_book.iml
├── lib
│ ├── address.dart
│ ├── email.dart
│ ├── field.dart
│ ├── functions.dart
│ ├── person.dart
│ └── phone_number.dart
├── pubspec.lock
└── pubspec.yaml
functions <---(Package)
├── bin
│ └── lib
│ └── functions.dart
├── functions.iml
├── pubspec.lock
└── pubspec.yaml
Both folders are in the same directory. How do I call a function that's part of a .dart file that's in my other package? From reading the dart website, it seems like it's possible. That way I can write my own functions and use them across different projects. Did I just read that wrong and have to copy the files into my program?