Rank 1: Thread
I'm starting to work with Appwrite and would like to better understand the execution context of Functions;
Could I make a shared folder between functions and place them in a single repository?
For example, in the following structure:
└── functions
├── make_dove_appear
│ └── main.dart
├── make_rabbit_appear
│ └── main.dart
└── shared
└── my_magic_hat.dart
The main.dart file from my make_rabbit_appear folder/function, could you import my_magic_hat.dart from a subfolder of the directory?
import '../shared/my_magic_hat.dart';
void main() { // Loaded from the shared sub-folder? final magicHat = MyMagicHat();
magicHat.makeAnimalAppear( AnimalAvailable.rabbit, );}