stopAllEffects method Null safety

Future<int> stopAllEffects()

Stops playing all audio effect files

Implementation

Future<int> stopAllEffects() async {
  IntValue reply = await _api.stopAllEffects();
  return reply.value ?? -1;
}