canRead method
Implementation
bool canRead(String table, {List<String>? namespace}) {
if (tables == null) return true;
final matches = _matchingTables(table: table, namespace: namespace);
if (matches.isEmpty) {
return false;
}
return matches.any((tableGrant) => tableGrant.read);
}