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.
 
 
 
 
 
 

16 lignes
285 B

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