import 'package:json_annotation/json_annotation.dart'; part 'streamtrans_results.g.dart'; @JsonSerializable() class StreamtransResults { String? compress; String? encoding; String? format; String? seq; int? status; String? text; StreamtransResults({ this.compress, this.encoding, this.format, this.seq, this.status, this.text, }); factory StreamtransResults.fromJson(Map json) { return _$StreamtransResultsFromJson(json); } Map toJson() => _$StreamtransResultsToJson(this); }