ResolvedAudioTrack constructor

const ResolvedAudioTrack({
  1. required String source,
  2. int delayMs = 0,
  3. double volume = 1,
  4. double? trimStartSeconds,
  5. double? trimEndSeconds,
  6. double? fadeInSeconds,
  7. double? fadeOutSeconds,
  8. double fadeOutStartSeconds = 0,
  9. bool loop = false,
})

Creates a resolved track over the authored source.

Implementation

const ResolvedAudioTrack({
  required this.source,
  this.delayMs = 0,
  this.volume = 1,
  this.trimStartSeconds,
  this.trimEndSeconds,
  this.fadeInSeconds,
  this.fadeOutSeconds,
  this.fadeOutStartSeconds = 0,
  this.loop = false,
});