fetchMultiple<T> abstract method

Stream<List<T>?> fetchMultiple<T>(
  1. String query, {
  2. required FromJsonConverter<T> fromJson,
  3. Map<String, String>? queryParams,
  4. bool includeDrafts = false,
})

Fetches content by query, returning a list of items.

Implementation

Stream<List<T>?> fetchMultiple<T>(
  String query, {
  required FromJsonConverter<T> fromJson,
  Map<String, String>? queryParams,
  bool includeDrafts = false,
});