getEffectSendVolume method

Future<int> getEffectSendVolume (
  1. int effectId
)

获取音效文件发送音量

effectId 指定音效的 ID。每个音效均有唯一的 ID

Implementation

Future<int> getEffectSendVolume(int effectId) async {
  assert(effectId != null);
  IntValue reply =
      await _api.getEffectPlaybackVolume(IntValue()..value = effectId);
  return reply.value;
}