// GENERATED CODE - DO NOT MODIFY BY HAND part of 'promotionOrderList.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** PromotionOrderList _$PromotionOrderListFromJson(Map json) { return PromotionOrderList() ..child = (json['child'] as List) ?.map((e) => e == null ? null : PromotionOrder.fromJson(e as Map)) ?.toList() ..count = json['count'] as num ..time = json['time'] as String; } Map _$PromotionOrderListToJson(PromotionOrderList instance) => { 'child': instance.child, 'count': instance.count, 'time': instance.time };