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