bool canRead(String table) { if (tables == null) return true; for (final t in tables!) { if (t.name == table) return t.read; } return false; }