Babies are free

This commit is contained in:
Nate Anderson
2025-01-29 17:50:44 -07:00
commit b99560e34b
35 changed files with 2533 additions and 0 deletions
@@ -0,0 +1,14 @@
class TranslationResponse {
final String id;
final String translatedText;
TranslationResponse({
required this.id,
required this.translatedText,
});
Map<String, dynamic> toJson() => {
'id': id,
'translatedText': translatedText,
};
}