stopAllEffects method

Future<int> stopAllEffects()

停止播放所有音效文件

Implementation

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