@override Future<double> evalCode(String code) { Pointer<Utf8> ptr = StringUtf8Pointer(code).toNativeUtf8(); double res = csoundAndroidEvalCode(_cs, ptr); malloc.free(ptr); return Future<double>.value(res); }