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