SFX constructor

const SFX({
  1. required String key,
  2. String? webhook,
  3. String? trackId,
  4. required String prompt,
  5. int? duration,
  6. bool? temp,
})

Implementation

const SFX({
  required this.key,
  this.webhook,
  this.trackId,
  required this.prompt,
  this.duration,
  this.temp,
});