import 'package:json_annotation/json_annotation.dart'; import 'cw.dart'; part 'w.g.dart'; @JsonSerializable() class W { int? bg; List? cw; W({this.bg, this.cw}); factory W.fromJson(Map json) => _$WFromJson(json); Map toJson() => _$WToJson(this); }