GqlQuery class

Constructors

GqlQuery({bool? allowLiterals, Map<String, GqlQueryParameter>? namedBindings, List<GqlQueryParameter>? positionalBindings, String? queryString})
GqlQuery.fromJson(Map json_)

Properties

allowLiterals bool?
When false, the query string must not contain any literals and instead must bind all values.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
namedBindings Map<String, GqlQueryParameter>?
For each non-reserved named binding site in the query string, there must be a named parameter with that name, but not necessarily the inverse.
getter/setter pair
positionalBindings List<GqlQueryParameter>?
Numbered binding site @1 references the first numbered parameter, effectively using 1-based indexing, rather than the usual 0.
getter/setter pair
queryString String?
A string of the format described here.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited