createQuery abstract method

FutureOr<Query> createQuery(
  1. String query, {
  2. bool json = false,
})

Creates a Query from a query string.

By default query is expected to be an SQL++ query. If json is true, query is expected to be the Query.jsonRepresentation of a query.

Implementation

FutureOr<Query> createQuery(String query, {bool json = false});