mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-15 07:29:30 +00:00
routes
This commit is contained in:
parent
ebc14a0448
commit
f8597f7430
13 changed files with 509 additions and 33 deletions
23
lib/router/models/library_item_extras.g.dart
Normal file
23
lib/router/models/library_item_extras.g.dart
Normal 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,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue