orWhereRelation method

Query<T> orWhereRelation(
  1. String relationPath,
  2. void callback(
    1. Query q
    )
)

---------- OR WHERE RELATION (JUST CALLBACK) ----------

Implementation

Query<T> orWhereRelation(
  String relationPath,
  void Function(Query<dynamic> q) callback,
) {
  return orWhereHas(relationPath, callback);
}