new directory

This commit is contained in:
2023-09-27 13:50:56 +02:00
parent 58e013a709
commit ecf7011302
8 changed files with 3 additions and 2 deletions

View File

@@ -10,6 +10,7 @@ class Database{
Future<Database> get database async {
if (_database != null) return _database!;
_database = await _initDB('database.db');
return _database!;
}

View File

@@ -1,8 +1,8 @@
import 'dart:ui';
import 'base_entity.dart';
import 'identifiers/enum/priority.dart';
import 'identifiers/enum/color.dart';
import 'identifiers/enum/priority.dart';
class Note extends BaseEntity{
static String id = BaseEntity.getId;