Gets all items from the database table
table
Future<List<Map<String, dynamic>>> getItems(String table) async { await ensureDbOpen(); return await db.query(table); }