// GENERATED CODE - DO NOT MODIFY BY HAND part of 'profile.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$ProfileImpl _$$ProfileImplFromJson(Map json) => _$ProfileImpl( cid: json['cid'] as String, did: json['did'] as String, handle: json['handle'] as String, displayName: json['displayName'] as String?, description: json['description'] as String?, avatar: json['avatar'] as String?, followersCount: (json['followersCount'] as num?)?.toInt(), followsCount: (json['followsCount'] as num?)?.toInt(), galleryCount: (json['galleryCount'] as num?)?.toInt(), viewer: json['viewer'] == null ? null : ProfileViewer.fromJson(json['viewer'] as Map), cameras: (json['cameras'] as List?) ?.map((e) => e as String) .toList(), descriptionFacets: (json['descriptionFacets'] as List?) ?.map((e) => e as Map) .toList(), ); Map _$$ProfileImplToJson(_$ProfileImpl instance) => { 'cid': instance.cid, 'did': instance.did, 'handle': instance.handle, 'displayName': instance.displayName, 'description': instance.description, 'avatar': instance.avatar, 'followersCount': instance.followersCount, 'followsCount': instance.followsCount, 'galleryCount': instance.galleryCount, 'viewer': instance.viewer, 'cameras': instance.cameras, 'descriptionFacets': instance.descriptionFacets, };