VoiceTemplateResponse constructor

VoiceTemplateResponse({
  1. required String creationDate,
  2. required String lastModifiedDate,
  3. required String templateName,
  4. required TemplateType templateType,
  5. String? arn,
  6. String? body,
  7. String? defaultSubstitutions,
  8. String? languageCode,
  9. String? templateDescription,
  10. String? version,
  11. String? voiceId,
  12. Map<String, String>? tags,
})

Implementation

VoiceTemplateResponse({
  required this.creationDate,
  required this.lastModifiedDate,
  required this.templateName,
  required this.templateType,
  this.arn,
  this.body,
  this.defaultSubstitutions,
  this.languageCode,
  this.templateDescription,
  this.version,
  this.voiceId,
  this.tags,
});