NotQuery constructor

NotQuery({
  1. SearchQuery? query,
})

Implementation

factory NotQuery({
  SearchQuery? query,
}) {
  final $result = create();
  if (query != null) {
    $result.query = query;
  }
  return $result;
}