MetadataRepository class Null safety

The repository for metadata database operations.

Constructors

MetadataRepository(Database _db)

Properties

hashCode → int
The hash code for this object.
read-only, inherited
runtimeType → Type
A representation of the runtime type of the object.
read-only, inherited

Methods

createTable() → void
get(MetadataKey key) → String
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
save(MetadataKey key, String value) → void
toString() → String
A string representation of this object.
inherited
update(MetadataKey key, String value) → void

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Constants

columnKey → const String
'key'
columnValue → const String
'value'
table → const String
The database table for metadata
'metadata'