// GENERATED CODE - DO NOT MODIFY BY HAND part of 'notification.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$NotificationImpl _$$NotificationImplFromJson( Map json, ) => _$NotificationImpl( uri: json['uri'] as String, cid: json['cid'] as String, author: Profile.fromJson(json['author'] as Map), record: json['record'] as Map, reason: json['reason'] as String, reasonSubjectGallery: json['reasonSubjectGallery'] == null ? null : Gallery.fromJson(json['reasonSubjectGallery'] as Map), reasonSubjectProfile: json['reasonSubjectProfile'] == null ? null : Profile.fromJson(json['reasonSubjectProfile'] as Map), reasonSubjectComment: json['reasonSubjectComment'] == null ? null : Comment.fromJson(json['reasonSubjectComment'] as Map), isRead: json['isRead'] as bool, indexedAt: json['indexedAt'] as String, ); Map _$$NotificationImplToJson(_$NotificationImpl instance) => { 'uri': instance.uri, 'cid': instance.cid, 'author': instance.author, 'record': instance.record, 'reason': instance.reason, 'reasonSubjectGallery': instance.reasonSubjectGallery, 'reasonSubjectProfile': instance.reasonSubjectProfile, 'reasonSubjectComment': instance.reasonSubjectComment, 'isRead': instance.isRead, 'indexedAt': instance.indexedAt, };