You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
759 B
21 lines
759 B
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'search_model.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
SearchModel _$SearchModelFromJson(Map<String, dynamic> json) => SearchModel(
|
|
activityVoList: (json['activityVoList'] as List<dynamic>)
|
|
.map((e) => e == null
|
|
? null
|
|
: ActivityItemModel.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
gambitVoList: (json['gambitVoList'] as List<dynamic>)
|
|
.map((e) => e == null
|
|
? null
|
|
: CommunityTopicModel.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|