| 1234567891011121314151617181920 |
- // GENERATED CODE - DO NOT MODIFY BY HAND
- part of 'promoteRecordList.dart';
- // **************************************************************************
- // JsonSerializableGenerator
- // **************************************************************************
- PromoteRecordList _$PromoteRecordListFromJson(Map<String, dynamic> json) {
- return PromoteRecordList()
- ..time = json['time'] as String
- ..list = (json['list'] as List)
- ?.map((e) => e == null
- ? null
- : PromoteRecord.fromJson(e as Map<String, dynamic>))
- ?.toList();
- }
- Map<String, dynamic> _$PromoteRecordListToJson(PromoteRecordList instance) =>
- <String, dynamic>{'time': instance.time, 'list': instance.list};
|