I want to be able to take a string (with the proper Dart syntax) and convert it into a callable dart function. Is there a way to do that?
For example, I would receive the string,
void test() { print("testing!"); }
And then turn it into a callable function. The reason I want to do this is to be able to download dart files from other servers and call their functions.