mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 21:15:50 -06:00
22 lines
699 B
Dart
22 lines
699 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'document_search_state.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
DocumentSearchState _$DocumentSearchStateFromJson(Map<String, dynamic> json) =>
|
|
DocumentSearchState(
|
|
searchHistory: (json['searchHistory'] as List<dynamic>?)
|
|
?.map((e) => e as String)
|
|
.toList() ??
|
|
const [],
|
|
);
|
|
|
|
Map<String, dynamic> _$DocumentSearchStateToJson(
|
|
DocumentSearchState instance) =>
|
|
<String, dynamic>{
|
|
'searchHistory': instance.searchHistory,
|
|
};
|