NECreateAudioMixingOption constructor Null safety

NECreateAudioMixingOption(
  1. {required String path,
  2. int loopCount = 0,
  3. bool sendEnabled = true,
  4. bool playbackEnabled = true,
  5. int sendVolume = 100,
  6. int playbackVolume = 100}
)

Implementation

NECreateAudioMixingOption({
  required this.path,
  this.loopCount = 0,
  this.sendEnabled = true,
  this.playbackEnabled = true,
  this.sendVolume = 100,
  this.playbackVolume = 100,
});