CreateAudioMixingOption constructor

CreateAudioMixingOption({
  1. required String path,
  2. required int loopCount,
  3. required bool sendEnabled,
  4. required int sendVolume,
  5. required bool playbackEnabled,
  6. required int playbackVolume,
  7. required int startTimeStamp,
  8. AudioStreamType? sendWithAudioType,
})

Implementation

CreateAudioMixingOption({
  required this.path,
  required this.loopCount,
  required this.sendEnabled,
  required this.sendVolume,
  required this.playbackEnabled,
  required this.playbackVolume,
  required this.startTimeStamp,
  this.sendWithAudioType,
});