mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-06-28 09:47:35 +08:00
Fix const error
This commit is contained in:
@ -18,10 +18,9 @@ class AppState {
|
||||
String gitBaseDirectory = "";
|
||||
|
||||
bool isLoadingFromDisk;
|
||||
List<Note> notes;
|
||||
List<Note> notes = [];
|
||||
|
||||
AppState({
|
||||
this.isLoadingFromDisk = false,
|
||||
this.notes = const [],
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user