getControlChannelSync method
Implementation
@override
double getControlChannelSync(String channelName) {
Pointer<Utf8> ptr = StringUtf8Pointer(channelName).toNativeUtf8();
double res = csoundAndroidGetControlChannel(_cs, ptr);
malloc.free(ptr);
return res;
}