createQuery abstract method

  1. @override
Future<AsyncQuery> createQuery(
  1. String query, {
  2. bool json = false,
})
override

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

@override
Future<AsyncQuery> createQuery(String query, {bool json = false});