containsAny method
True if any of the supplied tables have been modified.
Important: Use lower case for each table in tableFilter
.
Implementation
bool containsAny(Set<String> tableFilter) {
for (var table in tables) {
if (tableFilter.contains(table.toLowerCase())) {
return true;
}
}
return false;
}