namedQueryWithConverterGet<T> method

  1. @override
Future<QuerySnapshot<T>> namedQueryWithConverterGet<T>(
  1. String name, {
  2. GetOptions options = const GetOptions(),
  3. required FromFirestore<T> fromFirestore,
  4. required ToFirestore<T> toFirestore,
})
override

Performs a namedQueryGet and decode the result using Query.withConverter.

Implementation

@override
Future<QuerySnapshot<T>> namedQueryWithConverterGet<T>(
  String name, {
  GetOptions options = const GetOptions(),
  required FromFirestore<T> fromFirestore,
  required ToFirestore<T> toFirestore,
}) {
  // TODO: implement namedQueryWithConverterGet
  throw UnimplementedError();
}