query property

  1. @TagNumber(1)
String get query

Search query string (supports Lucene syntax for advanced users) Simple usage: "hero model" finds items matching both terms Fuzzy matching is automatic - typos like "heros" will match "hero"

Implementation

@$pb.TagNumber(1)
$core.String get query => $_getSZ(0);
  1. @TagNumber(1)
set query (String value)

Implementation

@$pb.TagNumber(1)
set query($core.String value) => $_setString(0, value);