TtsRequest constructor

TtsRequest({
  1. required String speech,
  2. required bool isShowOnConversationLayer,
  3. UUID? id,
  4. String? packageName,
  5. TtsRequestStatus? status,
  6. int? language,
  7. bool? showAnimationOnly,
  8. bool? cached,
})

Implementation

TtsRequest({
  required this.speech,
  required this.isShowOnConversationLayer,
  this.id,
  this.packageName,
  this.status,
  this.language,
  this.showAnimationOnly,
  this.cached,
});