SongGenerator constructor

const SongGenerator({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. bool? lyricsGeneration,
  5. dynamic initAudio,
  6. required String prompt,
  7. String? lyrics,
})

Implementation

const SongGenerator({
  required this.key,
  this.webhook,
  this.trackId,
  this.lyricsGeneration,
  this.initAudio,
  required this.prompt,
  this.lyrics,
});