This commit is contained in:
Dr-Blank 2024-05-09 00:41:19 -04:00
parent ebc14a0448
commit f8597f7430
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
13 changed files with 509 additions and 33 deletions

View file

@ -0,0 +1,23 @@
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'library_item_extras.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
_$LibraryItemExtrasImpl _$$LibraryItemExtrasImplFromJson(
Map<String, dynamic> json) =>
_$LibraryItemExtrasImpl(
book: json['book'] == null
? null
: BookMinified.fromJson(json['book'] as Map<String, dynamic>),
heroTagSuffix: json['heroTagSuffix'] as String?,
);
Map<String, dynamic> _$$LibraryItemExtrasImplToJson(
_$LibraryItemExtrasImpl instance) =>
<String, dynamic>{
'book': instance.book,
'heroTagSuffix': instance.heroTagSuffix,
};