// GENERATED CODE - DO NOT MODIFY BY HAND part of 'opds_link.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** _$OPDSLinkImpl _$$OPDSLinkImplFromJson(Map json) => _$OPDSLinkImpl( rel: json['rel'] as String, href: json['href'] as String, type: json['type'] as String?, title: json['title'] as String?, ); Map _$$OPDSLinkImplToJson(_$OPDSLinkImpl instance) => { 'rel': instance.rel, 'href': instance.href, 'type': instance.type, 'title': instance.title, };