exists method
Implementation
RuleBuilder exists(String table, {String? column}) {
_rules.add(ExistsRule(table, column));
return this;
}
RuleBuilder exists(String table, {String? column}) {
_rules.add(ExistsRule(table, column));
return this;
}