You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
591 B

  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'w.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. W _$WFromJson(Map<String, dynamic> json) => W(
  7. bg: (json['bg'] as num?)?.toInt(),
  8. cw: (json['cw'] as List<dynamic>?)
  9. ?.map((e) => Cw.fromJson(e as Map<String, dynamic>))
  10. .toList(),
  11. );
  12. Map<String, dynamic> _$WToJson(W instance) => <String, dynamic>{
  13. 'bg': instance.bg,
  14. 'cw': instance.cw,
  15. };