PopNotice.g.dart 629 B

12345678910111213141516171819
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'PopNotice.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. PopNotice _$PopNoticeFromJson(Map<String, dynamic> json) {
  7. return PopNotice(json['id'] as int, json['image'] as String);
  8. }
  9. // int id;
  10. // String name;//名称
  11. // String versionNo;//版本号
  12. // int ratio;//一级
  13. // int ratio2;//二级
  14. Map<String, dynamic> _$PopNoticeToJson(PopNotice instance) => <String, dynamic>{'id': instance.id, 'image': instance.image};