Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

18 lignes
302 B

  1. import 'package:json_annotation/json_annotation.dart';
  2. import 'cw.dart';
  3. part 'w.g.dart';
  4. @JsonSerializable()
  5. class W {
  6. int? bg;
  7. List<Cw>? cw;
  8. W({this.bg, this.cw});
  9. factory W.fromJson(Map<String, dynamic> json) => _$WFromJson(json);
  10. Map<String, dynamic> toJson() => _$WToJson(this);
  11. }