SpeechHistoryItemResponseModel constructor

const SpeechHistoryItemResponseModel({
  1. required String historyItemId,
  2. dynamic requestId,
  3. dynamic voiceId,
  4. dynamic modelId,
  5. dynamic voiceName,
  6. dynamic voiceCategory,
  7. dynamic text,
  8. required int dateUnix,
  9. required int characterCountChangeFrom,
  10. required int characterCountChangeTo,
  11. required String contentType,
  12. required SpeechHistoryItemResponseModelState state,
  13. dynamic settings,
  14. dynamic feedback,
  15. dynamic shareLinkId,
  16. dynamic source,
  17. dynamic alignments,
  18. dynamic dialogue,
})

Implementation

const SpeechHistoryItemResponseModel({
  required this.historyItemId,
  this.requestId,
  this.voiceId,
  this.modelId,
  this.voiceName,
  this.voiceCategory,
  this.text,
  required this.dateUnix,
  required this.characterCountChangeFrom,
  required this.characterCountChangeTo,
  required this.contentType,
  required this.state,
  this.settings,
  this.feedback,
  this.shareLinkId,
  this.source,
  this.alignments,
  this.dialogue,
});