orWhereNested abstract method

QueryBuilderInterface<T> orWhereNested(
  1. void callback(
    1. QueryBuilderInterface<T> query
    )
)

Add a nested OR WHERE clause group

Implementation

QueryBuilderInterface<T> orWhereNested(
  void Function(QueryBuilderInterface<T> query) callback,
);