fromJsonRepresentationSync static method

SyncQuery fromJsonRepresentationSync(
  1. SyncDatabase database,
  2. String jsonRepresentation
)

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

Implementation

// ignore: prefer_constructors_over_static_methods
static SyncQuery fromJsonRepresentationSync(
  SyncDatabase database,
  String jsonRepresentation,
) =>
    SyncQuery.fromJsonRepresentation(database, jsonRepresentation);