import 'package:json_annotation/json_annotation.dart'; part 'cw.g.dart'; @JsonSerializable() class Cw { int? sc; String? w; Cw({this.sc, this.w}); factory Cw.fromJson(Map json) => _$CwFromJson(json); Map toJson() => _$CwToJson(this); }