ComputeCallIDs<D extends Object, V> typedef
Signature for computing values for a list of IDs.
The callback receives a list of IDs and returns a list of values in the same order, either synchronously or asynchronously.
Implementation
typedef ComputeCallIDs<D extends Object, V> = FutureOr<List<V>> Function(
List<D> ids);