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