Files
GitJournal/lib/core/notes_folder.dart
Vishesh Handa 54195a16da null safety++
2021-05-18 11:09:42 +02:00

22 lines
448 B
Dart

import 'note.dart';
import 'notes_folder_config.dart';
import 'notes_folder_notifier.dart';
export 'notes_folder_config.dart';
abstract class NotesFolder implements NotesFolderNotifier {
bool get isEmpty;
bool get hasNotes;
String get name;
String get publicName;
List<Note> get notes;
List<NotesFolder> get subFolders;
NotesFolder? get parent;
NotesFolder? get fsFolder;
NotesFolderConfig get config;
String pathSpec();
}