VoiceResponseModel constructor

const VoiceResponseModel({
  1. required String voiceId,
  2. required String name,
  3. dynamic samples,
  4. required VoiceResponseModelCategory category,
  5. dynamic fineTuning,
  6. required Map<String, dynamic> labels,
  7. dynamic description,
  8. dynamic previewUrl,
  9. required List<String> availableForTiers,
  10. dynamic settings,
  11. dynamic sharing,
  12. required List<String> highQualityBaseModelIds,
  13. dynamic verifiedLanguages,
  14. dynamic safetyControl,
  15. dynamic voiceVerification,
  16. dynamic permissionOnResource,
  17. dynamic isOwner,
  18. bool? isLegacy,
  19. bool? isMixed,
  20. dynamic createdAtUnix,
})

Implementation

const VoiceResponseModel({
  required this.voiceId,
  required this.name,
  this.samples,
  required this.category,
  this.fineTuning,
  required this.labels,
  this.description,
  this.previewUrl,
  required this.availableForTiers,
  this.settings,
  this.sharing,
  required this.highQualityBaseModelIds,
  this.verifiedLanguages,
  this.safetyControl,
  this.voiceVerification,
  this.permissionOnResource,
  this.isOwner,
  this.isLegacy,
  this.isMixed,
  this.createdAtUnix,
});