mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-15 08:12:28 -06:00
Fixed visual bugs, added notifications on document upload success, enabled editing in inbox, added hints
This commit is contained in:
16
lib/features/inbox/bloc/state/inbox_state.g.dart
Normal file
16
lib/features/inbox/bloc/state/inbox_state.g.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
// 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,
|
||||
};
|
||||
Reference in New Issue
Block a user