You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
336 B

  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'tts_results.g.dart';
  3. @JsonSerializable()
  4. class TtsResults {
  5. String? audio;
  6. TtsResults({this.audio});
  7. factory TtsResults.fromJson(Map<String, dynamic> json) {
  8. return _$TtsResultsFromJson(json);
  9. }
  10. Map<String, dynamic> toJson() => _$TtsResultsToJson(this);
  11. }