Implement word search

This commit is contained in:
2025-04-25 22:47:06 +02:00
parent 1c2f90a617
commit b6410c717f
24 changed files with 1352 additions and 325 deletions

View File

@@ -1,5 +1,11 @@
/// Interface for objects which are meant to be written to a table in a SQL database.
abstract class SQLWritable {
const SQLWritable();
/// Returns a map of the object's properties and their values.
///
/// Note that there might be properties in the object which is meant to be
/// inserted into a different table. These properties will/should be excluded
/// from this map.
Map<String, Object?> get sqlValue;
}