mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-10 04:08:03 -06:00
17 lines
563 B
Dart
17 lines
563 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'inbox_state.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
InboxState _$InboxStateFromJson(Map<String, dynamic> json) => InboxState(
|
|
isHintAcknowledged: json['isHintAcknowledged'] as bool? ?? false,
|
|
);
|
|
|
|
Map<String, dynamic> _$InboxStateToJson(InboxState instance) =>
|
|
<String, dynamic>{
|
|
'isHintAcknowledged': instance.isHintAcknowledged,
|
|
};
|