stopAllEffects method Null safety
Stops playing all audio effect files
Implementation
Future<int> stopAllEffects() async {
IntValue reply = await _api.stopAllEffects();
return reply.value ?? -1;
}
Stops playing all audio effect files
Future<int> stopAllEffects() async {
IntValue reply = await _api.stopAllEffects();
return reply.value ?? -1;
}