exists method

RuleBuilder exists(
  1. String table, {
  2. String? column,
})

Implementation

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