mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 02:56:58 +08:00
Refactor member page (#3)
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
This commit is contained in:
21
lib/models/space_archive/last_watched_locator.g.dart
Normal file
21
lib/models/space_archive/last_watched_locator.g.dart
Normal file
@@ -0,0 +1,21 @@
|
||||
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||||
|
||||
part of 'last_watched_locator.dart';
|
||||
|
||||
// **************************************************************************
|
||||
// JsonSerializableGenerator
|
||||
// **************************************************************************
|
||||
|
||||
LastWatchedLocator _$LastWatchedLocatorFromJson(Map<String, dynamic> json) =>
|
||||
LastWatchedLocator(
|
||||
displayThreshold: (json['display_threshold'] as num?)?.toInt(),
|
||||
insertRanking: (json['insert_ranking'] as num?)?.toInt(),
|
||||
text: json['text'] as String?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> _$LastWatchedLocatorToJson(LastWatchedLocator instance) =>
|
||||
<String, dynamic>{
|
||||
'display_threshold': instance.displayThreshold,
|
||||
'insert_ranking': instance.insertRanking,
|
||||
'text': instance.text,
|
||||
};
|
||||
Reference in New Issue
Block a user