fetchMultiple<T> abstract method
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,
});