namedQueryGet method

  1. @override
Future<QuerySnapshot<Map<String, dynamic>>> namedQueryGet(
  1. String name, {
  2. GetOptions options = const GetOptions(),
})
override

Reads a QuerySnapshot if a namedQuery has been retrieved and passed as a Buffer to loadBundle(). To read from cache, pass GetOptions.source value as Source.cache. To read from the Firestore backend, use GetOptions.source as Source.server.

Implementation

@override
Future<QuerySnapshot<Map<String, dynamic>>> namedQueryGet(
  String name, {
  GetOptions options = const GetOptions(),
}) {
  // TODO: implement namedQueryGet
  throw UnimplementedError();
}