VirtualNotesFolder's config cannot change

We haven't exposed any way to change it.
This commit is contained in:
Vishesh Handa
2020-03-31 11:22:52 +02:00
parent 965639e6f2
commit 3c2d4b0f74
2 changed files with 4 additions and 0 deletions

View File

@ -40,6 +40,7 @@ class VirtualNotesFolder with NotesFolderNotifier implements NotesFolder {
@override @override
set config(NotesFolderConfig conf) { set config(NotesFolderConfig conf) {
assert(false, "A Virtual Notes Folder Config cannot change");
conf.save(); conf.save();
} }
} }

3
lib/features.dart Normal file
View File

@ -0,0 +1,3 @@
class Features {
static bool perFolderConfig = true;
}