orWhereHas abstract method

QueryBuilderInterface<T> orWhereHas(
  1. String relation, [
  2. void callback(
    1. QueryBuilderInterface query
    )?,
  3. String operator = '>=',
  4. int count = 1,
])

OR version of whereHas

Implementation

QueryBuilderInterface<T> orWhereHas(
  String relation, [
  void Function(QueryBuilderInterface<dynamic> query)? callback,
  String operator = '>=',
  int count = 1,
]);