// GENERATED CODE - DO NOT MODIFY BY HAND part of 'search.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** Search _$SearchFromJson(Map json) { return Search( type: json['type_'] as String, comments: (json['comments'] as List) ?.map((e) => e == null ? null : CommentView.fromJson(e as Map)) ?.toList(), posts: (json['posts'] as List) ?.map((e) => e == null ? null : PostView.fromJson(e as Map)) ?.toList(), communities: (json['communities'] as List) ?.map((e) => e == null ? null : CommunityView.fromJson(e as Map)) ?.toList(), users: (json['users'] as List) ?.map((e) => e == null ? null : UserView.fromJson(e as Map)) ?.toList(), ); }