compileCsdText method
Implementation
@override
Future<int> compileCsdText(String text) {
Pointer<Utf8> cName = StringUtf8Pointer(text).toNativeUtf8();
int res = csoundAndroidCompileCsdText(_cs, cName);
malloc.free(cName);
return Future<int>.value(res);
}