fromJsonRepresentationAsync static method

Future<AsyncQuery> fromJsonRepresentationAsync(
  1. AsyncDatabase database,
  2. String jsonRepresentation
)

Creates an AsyncQuery from the Query.jsonRepresentation of a query.

Implementation

static Future<AsyncQuery> fromJsonRepresentationAsync(
  AsyncDatabase database,
  String jsonRepresentation,
) =>
    AsyncQuery.fromJsonRepresentation(database, jsonRepresentation);