// GENERATED CODE - DO NOT MODIFY BY HAND part of 'index_data.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** Index_data _$Index_dataFromJson(Map json) { return Index_data() ..info = json['info'] as Map ..benefit = (json['benefit'] as List) ?.map((e) => e == null ? null : Product.fromJson(e as Map)) ?.toList() ..likeInfo = (json['likeInfo'] as List) ?.map((e) => e == null ? null : Product.fromJson(e as Map)) ?.toList() ..subscribe = json['subscribe'] as bool ..tengxun_map_key = json['tengxun_map_key'] as String; } Map _$Index_dataToJson(Index_data instance) => { 'info': instance.info, 'benefit': instance.benefit, 'likeInfo': instance.likeInfo, 'subscribe': instance.subscribe, 'tengxun_map_key': instance.tengxun_map_key };