readAsync property Null safety
Read all the key-value pairs from the store
Implementation
Future<Map<String, String>> get readAsync async => Map.fromEntries(
(await _db.metadata.where().findAll())
.map((m) => MapEntry(m.name, m.data)),
);