promoteRecordList.g.dart 725 B

1234567891011121314151617181920
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'promoteRecordList.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. PromoteRecordList _$PromoteRecordListFromJson(Map<String, dynamic> json) {
  7. return PromoteRecordList()
  8. ..time = json['time'] as String
  9. ..list = (json['list'] as List)
  10. ?.map((e) => e == null
  11. ? null
  12. : PromoteRecord.fromJson(e as Map<String, dynamic>))
  13. ?.toList();
  14. }
  15. Map<String, dynamic> _$PromoteRecordListToJson(PromoteRecordList instance) =>
  16. <String, dynamic>{'time': instance.time, 'list': instance.list};