Babies are free
This commit is contained in:
@@ -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,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user