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 regels
338 B

  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'data.g.dart';
  3. @JsonSerializable()
  4. class Data {
  5. String? audio;
  6. String? ced;
  7. int? status;
  8. Data({this.audio, this.ced, this.status});
  9. factory Data.fromJson(Map<String, dynamic> json) => _$DataFromJson(json);
  10. Map<String, dynamic> toJson() => _$DataToJson(this);
  11. }