Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

25 righe
456 B

  1. import 'package:json_annotation/json_annotation.dart';
  2. import 'w.dart';
  3. part 'result.g.dart';
  4. @JsonSerializable()
  5. class Result {
  6. int? sn;
  7. bool? ls;
  8. int? bg;
  9. int? ed;
  10. String? pgs;
  11. List<int>? rg;
  12. List<W>? ws;
  13. Result({this.sn, this.ls, this.bg, this.ed, this.pgs, this.rg, this.ws});
  14. factory Result.fromJson(Map<String, dynamic> json) {
  15. return _$ResultFromJson(json);
  16. }
  17. Map<String, dynamic> toJson() => _$ResultToJson(this);
  18. }