MediaPlayerState constructor

MediaPlayerState({
  1. int index = 0,
  2. int clipIndex = 0,
  3. bool playing = false,
  4. bool atStart = false,
  5. bool loop = false,
  6. String clipName = '',
  7. int frames = 0,
  8. int frameRate = 0,
  9. int width = 0,
  10. int height = 0,
  11. int source = 0,
  12. int audioSource = 0,
  13. int audioGain = 0,
  14. int audioBalance = 0,
  15. bool audioMute = false,
})

Implementation

MediaPlayerState({
  this.index = 0,
  this.clipIndex = 0,
  this.playing = false,
  this.atStart = false,
  this.loop = false,
  this.clipName = '',
  this.frames = 0,
  this.frameRate = 0,
  this.width = 0,
  this.height = 0,
  this.source = 0,
  this.audioSource = 0,
  this.audioGain = 0,
  this.audioBalance = 0,
  this.audioMute = false,
});