AudioParam constructor

AudioParam({
  1. double x = 0,
  2. double y = 0,
  3. double z = 0,
  4. double freq = 512,
  5. double volume = 0.5,
})

Data model that can be used to transfer data between the app UI and the sound source. Use with the SoundController.

Implementation

AudioParam({
  this.x = 0,
  this.y = 0,
  this.z = 0,
  this.freq = 512,
  this.volume = 0.5,
});