worldhopper/lib/models/opds_link.g.dart

23 lines
716 B
Dart

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