queryFormat property

String? queryFormat
final

Sets the query format, can be or or and.

Defaults to or.

  • or returns all the results matching any of the search query text's parameters. For example, searching for "bat man" with or will return all the results matching either "bat" or "man".
  • On the other hand with and, only results matching both "bat" and "man" will be returned. It returns the results matching all of the search query text's parameters.

Implementation

final String? queryFormat;